* default values for lisp-*-loop-indentation variables
@ 2009-10-29 9:42 Tobias C. Rittweiler
2009-10-29 14:18 ` Stefan Monnier
0 siblings, 1 reply; 2+ messages in thread
From: Tobias C. Rittweiler @ 2009-10-29 9:42 UTC (permalink / raw)
To: emacs-devel
The default values for `lisp-simple-loop-indentation',
`lisp-loop-keyword-indentation', and `lisp-loop-forms-indentation' seem
to be selected for the case that you want to indent loop forms like
(loop
for x from ...
for y from ...
do ..body..)
But my impression from reading (Common) Lisp code in the wild is that
most people actually do not want to place an extra newline after the
LOOP symbol, and prefer to write
(loop for x from ...
for y from ...
do ..body..)
With current values, not inserting a newline after the LOOP symbol
results in
(loop for x from ...
for y from ...
do ..body..)
hich isn't pretty at all.
What are the chances to change to default values to the following?
(setq lisp-simple-loop-indentation 2
lisp-loop-keyword-indentation 6
lisp-loop-forms-indentation 6)
-T.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-10-29 14:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-29 9:42 default values for lisp-*-loop-indentation variables Tobias C. Rittweiler
2009-10-29 14:18 ` Stefan Monnier
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.