aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes/paragraphs.el
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1991-05-13 22:05:14 +0000
committerJim Blandy <[email protected]>1991-05-13 22:05:14 +0000
commit6503cec3499f6b722f40304d78a10f9d79ed5165 (patch)
treeae36a1ffcbee5ac5600a301b06de785c0dd15739 /lisp/textmodes/paragraphs.el
parent73fa8346460c784807ee160905baad816913c446 (diff)
*** empty log message ***
Diffstat (limited to 'lisp/textmodes/paragraphs.el')
-rw-r--r--lisp/textmodes/paragraphs.el39
1 files changed, 22 insertions, 17 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el
index 4241c43e7b..55b9fc6e45 100644
--- a/lisp/textmodes/paragraphs.el
+++ b/lisp/textmodes/paragraphs.el
@@ -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-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 sentence-end (purecopy "[.?!][]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*") "\
-;;;###autoload *Regexp describing the end of a sentence.
-;;;###autoload All paragraph boundaries also end sentences, regardless.")
-
-;;;###autoload (defconst page-delimiter "^\014" "\
-;;;###autoload *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
+(defconst paragraph-start "^[ \t\n\f]" "\
+*Regexp for beginning of a line that starts OR separates paragraphs.")
+
+;;;###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]*") "\
+*Regexp describing the end of a sentence.
+All paragraph boundaries also end sentences, regardless.")
+
+;;;###autoload
+(defconst page-delimiter "^\014" "\
+*Regexp describing line-beginnings that separate pages.")
+
+;;;###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)