emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111180: Doc fixes related to "(de


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r111180: Doc fixes related to "(declare (indent symbol))" (bug#13450)
Date: Tue, 15 Jan 2013 21:03:06 -0500
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111180
committer: Glenn Morris <address@hidden>
branch nick: emacs-24
timestamp: Tue 2013-01-15 21:03:06 -0500
message:
  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.
modified:
  doc/lispref/ChangeLog
  doc/lispref/macros.texi
  lisp/ChangeLog
  lisp/emacs-lisp/lisp-mode.el
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2013-01-09 21:26:08 +0000
+++ b/doc/lispref/ChangeLog     2013-01-16 02:03:06 +0000
@@ -1,3 +1,8 @@
+2013-01-16  Glenn Morris  <address@hidden>
+
+       * macros.texi (Indenting Macros): Fix order of an indent
+       symbol's arguments.  (Bug#13450)
+
 2013-01-09  Glenn Morris  <address@hidden>
 
        * commands.texi (Interactive Codes):

=== modified file 'doc/lispref/macros.texi'
--- a/doc/lispref/macros.texi   2013-01-01 09:11:05 +0000
+++ b/doc/lispref/macros.texi   2013-01-16 02:03:06 +0000
@@ -606,12 +606,12 @@
 function receives two arguments:
 
 @table @asis
address@hidden @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.
address@hidden @var{pos}
-The position at which the line being indented begins.
 @end table
 
 @noindent

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-01-16 01:44:11 +0000
+++ b/lisp/ChangeLog    2013-01-16 02:03:06 +0000
@@ -1,5 +1,7 @@
 2013-01-16  Glenn Morris  <address@hidden>
 
+       * 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>

=== modified file 'lisp/emacs-lisp/lisp-mode.el'
--- a/lisp/emacs-lisp/lisp-mode.el      2013-01-01 09:11:05 +0000
+++ b/lisp/emacs-lisp/lisp-mode.el      2013-01-16 02:03:06 +0000
@@ -1148,7 +1148,7 @@
 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.
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]