diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-12-16 01:33:02 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-12-16 01:33:02 +0000 |
commit | d7fa5aa239688e198a88571183b218566ef0b90a (patch) | |
tree | b79dff93e6fd72f37dd67337523483567fa9a7f1 /lisp/textmodes/paragraphs.el | |
parent | 4c8a3b19ec8c278a1a1e7c3fd4a29af525bf9286 (diff) | |
download | emacs-d7fa5aa239688e198a88571183b218566ef0b90a.tar.gz emacs-d7fa5aa239688e198a88571183b218566ef0b90a.tar.bz2 emacs-d7fa5aa239688e198a88571183b218566ef0b90a.zip |
Change defconsts to defvars.
Diffstat (limited to 'lisp/textmodes/paragraphs.el')
-rw-r--r-- | lisp/textmodes/paragraphs.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index 775f0ea72a9..7948723d963 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -85,7 +85,7 @@ to paragraphs. The fill functions insert and delete only soft newlines." (point) (1+ (point)))))))))))) (setq use-hard-newlines t))) -(defconst paragraph-start "[ \t\n\f]" "\ +(defvar paragraph-start "[ \t\n\f]" "\ *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 @@ -108,7 +108,7 @@ hard newline are considered to match.") ;; something very minimal, even including "." (which makes every hard newline ;; start a new paragraph). -(defconst paragraph-separate "[ \t\f]*$" "\ +(defvar 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. @@ -117,7 +117,7 @@ the beginning of the line, so it should not use \"^\" as an anchor. This ensures that the paragraph functions will work equally within a region of text indented by a margin setting.") -(defconst sentence-end (purecopy "[.?!][]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*") "\ +(defvar sentence-end (purecopy "[.?!][]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*") "\ *Regexp describing the end of a sentence. All paragraph boundaries also end sentences, regardless. @@ -125,7 +125,7 @@ In order to be recognized as the end of a sentence, the ending period, question mark, or exclamation point must be followed by two spaces, unless it's inside some sort of quotes or parenthesis.") -(defconst page-delimiter "^\014" "\ +(defvar page-delimiter "^\014" "\ *Regexp describing line-beginnings that separate pages.") (defvar paragraph-ignore-fill-prefix nil "\ |