+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):
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
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>
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.