* doc/emacs/programs.texi (Lisp Indent): Mention the new
paren-space indentation rule.
the @code{declare} construct. @xref{Defining Macros,,, elisp, The
Emacs Lisp Reference Manual}.
+ In Emacs Lisp, lists are usually indented as if they are
+function-like forms:
+
+@lisp
+(setq foo '(bar zot
+ gazonk))
+@end lisp
+
+ However, if you add a space after the opening parenthesis, this tells
+Emacs that it's a data list instead of a piece of code, and Emacs will
+then indent it like this:
+
+@lisp
+(setq foo '( bar zot
+ gazonk))
+@end lisp
+
@node C Indent
@subsection Commands for C Indentation
** Emacs Lisp mode
+---
*** The mode-line now indicates whether we're using lexical or dynamic scoping.
++++
*** A space between an open paren and a symbol changes the indentation rule.
The presence of a space between an open paren and a symbol now is
taken as a statement by the programmer that this should be indented