aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2013-01-15 21:03:06 -0500
committerGlenn Morris2013-01-15 21:03:06 -0500
commitf8a42ad607df01eb47ac758a1601f5a9b1673352 (patch)
treed13cd924f30e8fbedaeddc80afa412e2c79f4502 /doc
parent827253f7388b3e7ccad021eeedb5bb8674448a16 (diff)
downloademacs-f8a42ad607df01eb47ac758a1601f5a9b1673352.tar.gz
emacs-f8a42ad607df01eb47ac758a1601f5a9b1673352.zip
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')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/macros.texi4
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 59361318ae3..8a35dd6d4bb 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12013-01-16 Glenn Morris <rgm@gnu.org>
2
3 * macros.texi (Indenting Macros): Fix order of an indent
4 symbol's arguments. (Bug#13450)
5
12013-01-09 Glenn Morris <rgm@gnu.org> 62013-01-09 Glenn Morris <rgm@gnu.org>
2 7
3 * commands.texi (Interactive Codes): 8 * commands.texi (Interactive Codes):
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
606function receives two arguments: 606function receives two arguments:
607 607
608@table @asis 608@table @asis
609@item @var{pos}
610The position at which the line being indented begins.
609@item @var{state} 611@item @var{state}
610The value returned by @code{parse-partial-sexp} (a Lisp primitive for 612The value returned by @code{parse-partial-sexp} (a Lisp primitive for
611indentation and nesting computation) when it parses up to the 613indentation and nesting computation) when it parses up to the
612beginning of this line. 614beginning of this line.
613@item @var{pos}
614The position at which the line being indented begins.
615@end table 615@end table
616 616
617@noindent 617@noindent