aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Goldowsky1995-03-02 15:41:16 +0000
committerBoris Goldowsky1995-03-02 15:41:16 +0000
commit690bc320aa789cdf41b7abbb8e4e76b90673ee52 (patch)
treef40d02faeead364a19d8c94befdb48738a51c346
parent53e84345ac48af1de085995f5f07993d44a46b1f (diff)
downloademacs-690bc320aa789cdf41b7abbb8e4e76b90673ee52.tar.gz
emacs-690bc320aa789cdf41b7abbb8e4e76b90673ee52.zip
(scribe-mode): Remove ^ from paragraph-start & paragraph-separate.
-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
130 (make-local-variable 'comment-end) 130 (make-local-variable 'comment-end)
131 (setq comment-end "]") 131 (setq comment-end "]")
132 (make-local-variable 'paragraph-start) 132 (make-local-variable 'paragraph-start)
133 (setq paragraph-start (concat "\\(^[\n\f]\\)\\|\\(^@\\w+[" 133 (setq paragraph-start (concat "\\([\n\f]\\)\\|\\(@\\w+["
134 scribe-open-parentheses 134 scribe-open-parentheses
135 "].*[" 135 "].*["
136 scribe-close-parentheses 136 scribe-close-parentheses
137 "]$\\)")) 137 "]$\\)"))
138 (make-local-variable 'paragraph-separate) 138 (make-local-variable 'paragraph-separate)
139 (setq paragraph-separate (if scribe-fancy-paragraphs 139 (setq paragraph-separate (if scribe-fancy-paragraphs
140 paragraph-start "^$")) 140 paragraph-start "$"))
141 (make-local-variable 'sentence-end) 141 (make-local-variable 'sentence-end)
142 (setq sentence-end "\\([.?!]\\|@:\\)[]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*") 142 (setq sentence-end "\\([.?!]\\|@:\\)[]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*")
143 (make-local-variable 'compile-command) 143 (make-local-variable 'compile-command)