From: Richard M. Stallman Date: Thu, 12 Aug 1993 08:09:00 +0000 (+0000) Subject: (paragraph-start): Doc fix. X-Git-Tag: emacs-19.34~11266 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f2007b343f5ac72d1400d98611b7f5cef65512c;p=emacs.git (paragraph-start): Doc fix. --- diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index b548ab41c00..c6885617015 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -29,7 +29,12 @@ ;;; Code: (defconst paragraph-start "^[ \t\n\f]" "\ -*Regexp for beginning of a line that starts OR separates paragraphs.") +*Regexp for beginning of a line that starts OR separates paragraphs. +This regexp should match lines that separate paragraphs +and should also match lines that start a paragraph +\(and are part of that paragraph). +The variable `paragraph-separate' specifies how to distinguish +lines that start paragraphs from lines that separate them.") (defconst paragraph-separate "^[ \t\f]*$" "\ *Regexp for beginning of a line that separates paragraphs.