]> code.delx.au - gnu-emacs/commitdiff
* doc/emacs/text.texi (Sorting): Fix indentation.
authorXue Fuqiao <xfq.free@gmail.com>
Sat, 17 Aug 2013 08:04:31 +0000 (16:04 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Sat, 17 Aug 2013 08:04:31 +0000 (16:04 +0800)
doc/emacs/glossary.texi
doc/lispref/ChangeLog
doc/lispref/text.texi

index 43441c208147d06e76d894515c865240c1350c8e..e4693a5293f85b29b87df17b4b823354add534e4 100644 (file)
@@ -873,6 +873,7 @@ The Emacs major modes are a mutually exclusive set of options, each of
 which configures Emacs for editing a certain sort of text.  Ideally,
 each programming language has its own major mode.  @xref{Major Modes}.
 
+@c FIXME: Mention margins for filling?
 @item Margin
 The space between the usable part of a window (including the
 fringe) and the window edge.
index 12eec54ef53d04101bb074257b6019368631c697..4143c2ae76be65f391e6edcbda3d798629a0ad98 100644 (file)
@@ -3,6 +3,7 @@
        * text.texi (Maintaining Undo): Mention interactive call of
        buffer-disable-undo.
        (Filling): Add cross-reference for hard newlines.
+       (Sorting): Fix indentation.
 
 2013-08-16  Xue Fuqiao  <xfq.free@gmail.com>
 
index babb5b71b8f67df543c67a5e3f4d8e514ba7b0c0..83035cb792d92a60c4a1061e7fba23cfe0cf4f3a 100644 (file)
@@ -1809,6 +1809,7 @@ prefix or @code{nil}, meaning it has failed to determine a prefix.
 @cindex filling, automatic
 @cindex Auto Fill mode
 
+@c FIXME: I don't think any of the variables below is a/an normal/abnormal hook.
   Auto Fill mode is a minor mode that fills lines automatically as text
 is inserted.  This section describes the hook used by Auto Fill mode.
 For a description of functions that you can call explicitly to fill and
@@ -1950,10 +1951,10 @@ its @code{sort-subr} call looks like this:
 @group
 (sort-subr reverse
            (function
-             (lambda ()
-               (while (and (not (eobp))
-                      (looking-at paragraph-separate))
-                 (forward-line 1))))
+            (lambda ()
+              (while (and (not (eobp))
+                          (looking-at paragraph-separate))
+                (forward-line 1))))
            'forward-paragraph)
 @end group
 @end example