>>>>> "Andreas" == Andreas Eder <are_muc at users.sourceforge.net> writes:
Andreas> Update of /cvsroot/maxima/maxima/src
Andreas> In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv9313
Andreas> Modified Files:
Andreas> sin.lisp
Andreas> Log Message:
Andreas> removed unused functions/variables;
Andreas> replaced maclispisms by their cl counterpoart.
Could we please keep the removal of junk separate from indentation
changes? It makes it hard to keep track of what's happening. Plus
some of the indentation for the code that I've modified is done that
way so I can easily see the various parts. Smashing things all onto
one line because they fit isn't helping me.
Also, I see that you've replaced (memq x foo) everywhere with (member
x foo :test #'eq). Is that really necessary? If you're always using
:test #'eq, I think memq is a natural expression of that idea. (On
the other hand, I think many of the uses of memq could easily use
member with the default test of 'eql instead of 'eq.)
Ray