]> git.eshelyaron.com Git - emacs.git/commitdiff
(scribe-mode): Remove ^ from paragraph-start & paragraph-separate.
authorBoris Goldowsky <boris@gnu.org>
Thu, 2 Mar 1995 15:41:16 +0000 (15:41 +0000)
committerBoris Goldowsky <boris@gnu.org>
Thu, 2 Mar 1995 15:41:16 +0000 (15:41 +0000)
lisp/textmodes/scribe.el

index 25815121002f68d29947287da811e623ae2e821b..cd53bd5d6a6a2cbf448579180e7346ce2128422f 100644 (file)
@@ -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)