style-warnings



On Fri, 2004-05-07 at 10:39, Richard Fateman wrote:
> indents in the lisp code??
> It seems to me there is a well-defined standard
> for lisp pretty-printing in emacs.
> 
> There are other ways, and in some cases I
> dislike the emacs standard (e.g. how it does IF),
> but the lisp community has pounded on this for
> a long time. I don't believe there is much
> to be gained by claiming the lisp source code
> for maxima is somehow not like other
> lisp code.

I think I made it sound like I had more controversy in mind than I
should have. Here's what I had in mind:

1) Indent using the emacs conventions. (Are xemacs and emacs identical
in this regard?)

2) Make sure that emacs has lisp-indent-function set to
common-lisp-indent-function.

3) End blocks with )'s all on the same line. There are a number of
places in the code with
        blah))))
    ))
where I would have written
        blah))))))

That's all.

--Jim