aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)