]> code.delx.au - gnu-emacs/commitdiff
Doc fixes related to "(declare (indent symbol))" (bug#13450)
authorGlenn Morris <rgm@gnu.org>
Wed, 16 Jan 2013 02:03:06 +0000 (21:03 -0500)
committerGlenn Morris <rgm@gnu.org>
Wed, 16 Jan 2013 02:03:06 +0000 (21:03 -0500)
* 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.

doc/lispref/ChangeLog
doc/lispref/macros.texi
lisp/ChangeLog
lisp/emacs-lisp/lisp-mode.el

index 59361318ae30376e1959c18391a6b26bec509012..8a35dd6d4bb26bd491b6a6c2e3835a6692e04709 100644 (file)
@@ -1,3 +1,8 @@
+2013-01-16  Glenn Morris  <rgm@gnu.org>
+
+       * macros.texi (Indenting Macros): Fix order of an indent
+       symbol's arguments.  (Bug#13450)
+
 2013-01-09  Glenn Morris  <rgm@gnu.org>
 
        * commands.texi (Interactive Codes):
index 9ad00ca0260238297d4306e3770c3eec3a5d25d1..5520bbbd1dfa7bffd5ea14d64fab339adb4f81e5 100644 (file)
@@ -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
index efc9521cda2bff3d39695164da4f2364d6211894..c2d869ae8273ed2367c008cf73e7b8f99d0174b7 100644 (file)
@@ -1,5 +1,7 @@
 2013-01-16  Glenn Morris  <rgm@gnu.org>
 
+       * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
+
        * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
        Revert 2012-12-29 change.  Ref:
        <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00360.html>
index a68c727aaba33e8b0bf566e182b172f0d28a675c..fc1cfe7afd12449656ad4e9654b43b52715093c1 100644 (file)
@@ -1148,7 +1148,7 @@ is the buffer position of the start of the containing expression."
 The function `calculate-lisp-indent' calls this to determine
 if the arguments of a Lisp function call should be indented specially.
 
-INDENT-POINT is the position where the user typed TAB, or equivalent.
+INDENT-POINT is the position at which the line being indented begins.
 Point is located at the point to indent under (for default indentation);
 STATE is the `parse-partial-sexp' state for that position.