From 3d6663bb11f1eee42f2fb71b7524c01ccb5e6c14 Mon Sep 17 00:00:00 2001 From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:34:57 +0000 Subject: [PATCH] (Edit-options-mode): Remove ^ from paragraph-start. --- lisp/options.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")