Peter Seibel peter@javamonkey.com writes:
These days (and perhaps before) function arguments get indented like this:
(defun foo (x y z) (some-function x y z))
Yes, this is the usual indentation for ordinary function calls, i.e. arguments start in the same column as the function name. The forms in the body of special forms indented relative to the opening paren. lisp-body-indent could be used to customize the number of columns, but everybody seems to be happy with 2 columns.
Helmut.