From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:40:12 +0000 (+0000) Subject: (scheme-mode-variables): Remove ^ from paragraph-start & paragraph-separate. X-Git-Tag: emacs-19.34~4966 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=53e84345ac48af1de085995f5f07993d44a46b1f;p=emacs.git (scheme-mode-variables): Remove ^ from paragraph-start & paragraph-separate. --- diff --git a/lisp/progmodes/scheme.el b/lisp/progmodes/scheme.el index 94ee1ed7b03..d2ea8c1d418 100644 --- a/lisp/progmodes/scheme.el +++ b/lisp/progmodes/scheme.el @@ -91,7 +91,7 @@ (set-syntax-table scheme-mode-syntax-table) (setq local-abbrev-table scheme-mode-abbrev-table) (make-local-variable 'paragraph-start) - (setq paragraph-start (concat "^$\\|" page-delimiter)) + (setq paragraph-start (concat "$\\|" page-delimiter)) (make-local-variable 'paragraph-separate) (setq paragraph-separate paragraph-start) (make-local-variable 'paragraph-ignore-fill-prefix)