mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-20 04:30:55 -08:00
(calculate-lisp-indent): To distinguish code and data when indenting, introduce the convention that a space between an open paren and a symbol indicate that this should be indented as a simple data list.
5 lines
99 B
Common Lisp
5 lines
99 B
Common Lisp
(defun x ()
|
|
(print (quote ( thingy great
|
|
stuff)))
|
|
(print (quote (thingy great
|
|
stuff))))
|