changeset 10893:e9418d324071

(scribe-mode): Remove ^ from paragraph-start & paragraph-separate.
author Boris Goldowsky <boris@gnu.org>
date Thu, 02 Mar 1995 15:41:16 +0000
parents 0e6ae3605c92
children 7eb253d2b60a
files lisp/textmodes/scribe.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)