# HG changeset patch # User Boris Goldowsky # Date 794158876 0 # Node ID e9418d32407136632b670789d8a72101259bb1da # Parent 0e6ae3605c92a895527cf9515be191c4d5878ff0 (scribe-mode): Remove ^ from paragraph-start & paragraph-separate. diff -r 0e6ae3605c92 -r e9418d324071 lisp/textmodes/scribe.el --- a/lisp/textmodes/scribe.el Thu Mar 02 15:40:12 1995 +0000 +++ b/lisp/textmodes/scribe.el Thu Mar 02 15:41:16 1995 +0000 @@ -130,14 +130,14 @@ (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)