Mercurial > emacs
comparison lisp/textmodes/paragraphs.el @ 4585:04e78c728252
(paragraph-start): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 12 Aug 1993 08:09:00 +0000 |
parents | abc6df78588f |
children | c4c662362d39 |
comparison
equal
deleted
inserted
replaced
4584:ae9fcf538e23 | 4585:04e78c728252 |
---|---|
27 ;; Emacs manual. | 27 ;; Emacs manual. |
28 | 28 |
29 ;;; Code: | 29 ;;; Code: |
30 | 30 |
31 (defconst paragraph-start "^[ \t\n\f]" "\ | 31 (defconst paragraph-start "^[ \t\n\f]" "\ |
32 *Regexp for beginning of a line that starts OR separates paragraphs.") | 32 *Regexp for beginning of a line that starts OR separates paragraphs. |
33 This regexp should match lines that separate paragraphs | |
34 and should also match lines that start a paragraph | |
35 \(and are part of that paragraph). | |
36 The variable `paragraph-separate' specifies how to distinguish | |
37 lines that start paragraphs from lines that separate them.") | |
33 | 38 |
34 (defconst paragraph-separate "^[ \t\f]*$" "\ | 39 (defconst paragraph-separate "^[ \t\f]*$" "\ |
35 *Regexp for beginning of a line that separates paragraphs. | 40 *Regexp for beginning of a line that separates paragraphs. |
36 If you change this, you may have to change paragraph-start also.") | 41 If you change this, you may have to change paragraph-start also.") |
37 | 42 |