From: Boris Goldowsky Date: Wed, 1 Mar 1995 16:03:33 +0000 (+0000) Subject: (mh-letter-mode): Remove ^ from paragraph-start & paragraph-separate. X-Git-Tag: emacs-19.34~4983 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8e700d6e435f46db1f0b75862c21b80528da71e0;p=emacs.git (mh-letter-mode): Remove ^ from paragraph-start & paragraph-separate. --- diff --git a/lisp/mail/mh-comp.el b/lisp/mail/mh-comp.el index 0ed7774dc09..af816c38a8a 100644 --- a/lisp/mail/mh-comp.el +++ b/lisp/mail/mh-comp.el @@ -582,10 +582,10 @@ invoked with no args, if those values are non-nil." (or mh-user-path (mh-find-path)) (kill-all-local-variables) (make-local-variable 'paragraph-start) - (setq paragraph-start (concat "^[ \t]*[-_][-_][-_]+$\\|" paragraph-start)) + (setq paragraph-start (concat "[ \t]*[-_][-_][-_]+$\\|" paragraph-start)) (make-local-variable 'paragraph-separate) (setq paragraph-separate - (concat "^[ \t]*[-_][-_][-_]+$\\|" paragraph-separate)) + (concat "[ \t]*[-_][-_][-_]+$\\|" paragraph-separate)) (make-local-variable 'mh-send-args) (make-local-variable 'mh-annotate-char) (make-local-variable 'mh-annotate-field)