Wolfgang Jenker posted his genut-1.0 patches in June. I have
made a couple of minor updates (for recent changes), tested
them (clisp-2.28/cygwin/win2k) and duplicated Wolfgang's results.
There are no testsuite regressions, so I am checking them in now.
The one patch I am unsure of is to src/alisp.lisp (below).
Could someone with gcl:
- do a cvs update
- make and make check
- run disol.dem, facexp.dem and stopex.dem
David
Index: src/acall.lisp
===================================================================
RCS file: /cvsroot/maxima/maxima/src/acall.lisp,v
retrieving revision 1.4
diff -u -r1.4 acall.lisp
--- src/acall.lisp 28 Jun 2002 20:39:44 -0000 1.4
+++ src/acall.lisp 28 Jul 2002 11:08:16 -0000
@@ -43,8 +43,7 @@
(APPLY F L))
#+cl
((and (symbolp f)(or (macro-function f)
- #-cmu (special-form-p f)
- #+cmu (special-operator-p f)))
+ (special-operator-p f)))
(eval (cons f (copy-rest-arg l))))
(T
(MAPPLY F (copy-rest-arg L) NIL))))