These days (and perhaps before) function arguments get indented like this:
(defun foo (x y z) (some-function x y z))
while I was sort of expecting the x, y, and z to be in one more space like this:
(defun foo (x y z) (some-function x y z))
Have I slipped a cog? I can't find any variable in the customizable lisp indentation variables that controls this. Has it always been this way?
-Peter