diff options
| author | Xue Fuqiao | 2013-08-17 16:04:31 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-08-17 16:04:31 +0800 |
| commit | d311017740d3a8757c3fa5a35f52b0aeb25f10ca (patch) | |
| tree | 27867bda14b73500cd0dac8ceeab016328159351 /doc/lispref/text.texi | |
| parent | c9b39934d655610072cd42e39a46f6332e97dc41 (diff) | |
| download | emacs-d311017740d3a8757c3fa5a35f52b0aeb25f10ca.tar.gz emacs-d311017740d3a8757c3fa5a35f52b0aeb25f10ca.zip | |
* 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. | |||
| 1809 | @cindex filling, automatic | 1809 | @cindex filling, automatic |
| 1810 | @cindex Auto Fill mode | 1810 | @cindex Auto Fill mode |
| 1811 | 1811 | ||
| 1812 | @c FIXME: I don't think any of the variables below is a/an normal/abnormal hook. | ||
| 1812 | Auto Fill mode is a minor mode that fills lines automatically as text | 1813 | Auto Fill mode is a minor mode that fills lines automatically as text |
| 1813 | is inserted. This section describes the hook used by Auto Fill mode. | 1814 | is inserted. This section describes the hook used by Auto Fill mode. |
| 1814 | For a description of functions that you can call explicitly to fill and | 1815 | 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: | |||
| 1950 | @group | 1951 | @group |
| 1951 | (sort-subr reverse | 1952 | (sort-subr reverse |
| 1952 | (function | 1953 | (function |
| 1953 | (lambda () | 1954 | (lambda () |
| 1954 | (while (and (not (eobp)) | 1955 | (while (and (not (eobp)) |
| 1955 | (looking-at paragraph-separate)) | 1956 | (looking-at paragraph-separate)) |
| 1956 | (forward-line 1)))) | 1957 | (forward-line 1)))) |
| 1957 | 'forward-paragraph) | 1958 | 'forward-paragraph) |
| 1958 | @end group | 1959 | @end group |
| 1959 | @end example | 1960 | @end example |