diff lisp/textmodes/paragraphs.el @ 269:2ca8cdb96a9f

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Mon, 13 May 1991 22:05:14 +0000
parents 7db4ff4204a5
children 505130d1ddf8
line wrap: on
line diff
--- a/lisp/textmodes/paragraphs.el	Mon May 13 22:05:10 1991 +0000
+++ b/lisp/textmodes/paragraphs.el	Mon May 13 22:05:14 1991 +0000
@@ -18,23 +18,28 @@
 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
 
-;;;###autoload (defconst paragraph-start "^[ \t\n\f]"
-;;;###autoload   "*Regexp for beginning of a line that starts OR separates paragraphs.")
+;;;###autoload
+(defconst paragraph-start "^[ \t\n\f]" "\
+*Regexp for beginning of a line that starts OR separates paragraphs.")
 
-;;;###autoload (defconst paragraph-separate "^[ \t\f]*$"
-;;;###autoload   "*Regexp for beginning of a line that separates paragraphs.
-;;;###autoload If you change this, you may have to change paragraph-start also.")
+;;;###autoload
+(defconst paragraph-separate "^[ \t\f]*$" "\
+*Regexp for beginning of a line that separates paragraphs.
+If you change this, you may have to change paragraph-start also.")
 
-;;;###autoload (defconst sentence-end   (purecopy "[.?!][]\"')}]*\\($\\| $\\|\t\\|  \\)[ \t\n]*") "\
-;;;###autoload *Regexp describing the end of a sentence.
-;;;###autoload All paragraph boundaries also end sentences, regardless.")
+;;;###autoload
+(defconst sentence-end (purecopy "[.?!][]\"')}]*\\($\\| $\\|\t\\|  \\)[ \t\n]*") "\
+*Regexp describing the end of a sentence.
+All paragraph boundaries also end sentences, regardless.")
 
-;;;###autoload (defconst page-delimiter "^\014" "\
-;;;###autoload *Regexp describing line-beginnings that separate pages.")
+;;;###autoload
+(defconst page-delimiter "^\014" "\
+*Regexp describing line-beginnings that separate pages.")
 
-;;;###autoload (defvar paragraph-ignore-fill-prefix nil
-;;;###autoload   "Non-nil means the paragraph commands are not affected by `fill-prefix'.
-;;;###autoload This is desirable in modes where blank lines are the paragraph delimiters.")
+;;;###autoload
+(defvar paragraph-ignore-fill-prefix nil "\
+Non-nil means the paragraph commands are not affected by `fill-prefix'.
+This is desirable in modes where blank lines are the paragraph delimiters.")
 
 
 (defun forward-paragraph (&optional arg)