diff options
author | Xue Fuqiao <xfq.free@gmail.com> | 2013-08-17 16:04:31 +0800 |
---|---|---|
committer | Xue Fuqiao <xfq.free@gmail.com> | 2013-08-17 16:04:31 +0800 |
commit | d311017740d3a8757c3fa5a35f52b0aeb25f10ca (patch) | |
tree | 27867bda14b73500cd0dac8ceeab016328159351 /doc/lispref/text.texi | |
parent | c9b39934d655610072cd42e39a46f6332e97dc41 (diff) | |
download | emacs-d311017740d3a8757c3fa5a35f52b0aeb25f10ca.tar.gz |
* doc/emacs/text.texi (Sorting): Fix indentation.
Diffstat (limited to 'doc/lispref/text.texi')
-rw-r--r-- | doc/lispref/text.texi | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index babb5b71b8f..83035cb792d 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi @@ -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 |