From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:34:57 +0000 (+0000) Subject: (Edit-options-mode): Remove ^ from paragraph-start. X-Git-Tag: emacs-19.34~4971 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3d6663bb11f1eee42f2fb71b7524c01ccb5e6c14;p=emacs.git (Edit-options-mode): Remove ^ from paragraph-start. --- diff --git a/lisp/options.el b/lisp/options.el index ca78256b562..4759c102666 100644 --- a/lisp/options.el +++ b/lisp/options.el @@ -98,7 +98,7 @@ For convenience, the characters \\[backward-paragraph] and \\[forward-paragraph] (make-local-variable 'paragraph-separate) (setq paragraph-separate "[^\^@-\^?]") (make-local-variable 'paragraph-start) - (setq paragraph-start "^\t") + (setq paragraph-start "\t") (setq truncate-lines t) (setq major-mode 'Edit-options-mode) (setq mode-name "Options")