summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorBoris Goldowsky <boris@gnu.org>1995-03-02 15:41:16 +0000
committerBoris Goldowsky <boris@gnu.org>1995-03-02 15:41:16 +0000
commit690bc320aa789cdf41b7abbb8e4e76b90673ee52 (patch)
treef40d02faeead364a19d8c94befdb48738a51c346 /lisp/textmodes
parent53e84345ac48af1de085995f5f07993d44a46b1f (diff)
downloademacs-690bc320aa789cdf41b7abbb8e4e76b90673ee52.tar.gz
(scribe-mode): Remove ^ from paragraph-start & paragraph-separate.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/scribe.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/scribe.el b/lisp/textmodes/scribe.el
index 25815121002..cd53bd5d6a6 100644
--- a/lisp/textmodes/scribe.el
+++ b/lisp/textmodes/scribe.el
@@ -130,14 +130,14 @@ scribe-electric-parenthesis
(make-local-variable 'comment-end)
(setq comment-end "]")
(make-local-variable 'paragraph-start)
- (setq paragraph-start (concat "\\(^[\n\f]\\)\\|\\(^@\\w+["
+ (setq paragraph-start (concat "\\([\n\f]\\)\\|\\(@\\w+["
scribe-open-parentheses
"].*["
scribe-close-parentheses
"]$\\)"))
(make-local-variable 'paragraph-separate)
(setq paragraph-separate (if scribe-fancy-paragraphs
- paragraph-start "^$"))
+ paragraph-start "$"))
(make-local-variable 'sentence-end)
(setq sentence-end "\\([.?!]\\|@:\\)[]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*")
(make-local-variable 'compile-command)