From 690bc320aa789cdf41b7abbb8e4e76b90673ee52 Mon Sep 17 00:00:00 2001 From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:41:16 +0000 Subject: [PATCH] (scribe-mode): Remove ^ from paragraph-start & paragraph-separate. --- lisp/textmodes/scribe.el | 4 ++-- 1 file 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)