1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-20 04:30:55 -08:00
emacs/test/manual/indent/lisp.lisp
akater 1b2a881c9b * lisp/emacs-lisp/lisp-mode.el: Add new indentation convention
(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.
2020-05-29 00:26:09 -04:00

5 lines
99 B
Common Lisp

(defun x ()
(print (quote ( thingy great
stuff)))
(print (quote (thingy great
stuff))))