summaryrefslogtreecommitdiff
path: root/doc/lispref/macros.texi
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2013-01-15 21:03:06 -0500
committerGlenn Morris <rgm@gnu.org>2013-01-15 21:03:06 -0500
commitf8a42ad607df01eb47ac758a1601f5a9b1673352 (patch)
treed13cd924f30e8fbedaeddc80afa412e2c79f4502 /doc/lispref/macros.texi
parent827253f7388b3e7ccad021eeedb5bb8674448a16 (diff)
downloademacs-f8a42ad607df01eb47ac758a1601f5a9b1673352.tar.gz
Doc fixes related to "(declare (indent symbol))" (bug#13450)
* doc/lispref/macros.texi (Indenting Macros): Fix order of an indent symbol's arguments. * lisp/emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
Diffstat (limited to 'doc/lispref/macros.texi')
-rw-r--r--doc/lispref/macros.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/macros.texi b/doc/lispref/macros.texi
index 9ad00ca0260..5520bbbd1df 100644
--- a/doc/lispref/macros.texi
+++ b/doc/lispref/macros.texi
@@ -606,12 +606,12 @@ calculate the indentation of a line within this expression. The
function receives two arguments:
@table @asis
+@item @var{pos}
+The position at which the line being indented begins.
@item @var{state}
The value returned by @code{parse-partial-sexp} (a Lisp primitive for
indentation and nesting computation) when it parses up to the
beginning of this line.
-@item @var{pos}
-The position at which the line being indented begins.
@end table
@noindent