From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:41:16 +0000 (+0000) Subject: (scribe-mode): Remove ^ from paragraph-start & paragraph-separate. X-Git-Tag: emacs-19.34~4965 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=690bc320aa789cdf41b7abbb8e4e76b90673ee52;p=emacs.git (scribe-mode): Remove ^ from paragraph-start & paragraph-separate. --- 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)