diff options
author | Boris Goldowsky <boris@gnu.org> | 1995-03-02 15:34:57 +0000 |
---|---|---|
committer | Boris Goldowsky <boris@gnu.org> | 1995-03-02 15:34:57 +0000 |
commit | 3d6663bb11f1eee42f2fb71b7524c01ccb5e6c14 (patch) | |
tree | 2ab0894ccfd6f3ae1f01a83c55981b35082d5a16 /lisp/options.el | |
parent | 0608d57e5caa002f56163118db0c94133268d84e (diff) | |
download | emacs-3d6663bb11f1eee42f2fb71b7524c01ccb5e6c14.tar.gz emacs-3d6663bb11f1eee42f2fb71b7524c01ccb5e6c14.tar.bz2 emacs-3d6663bb11f1eee42f2fb71b7524c01ccb5e6c14.zip |
(Edit-options-mode): Remove ^ from paragraph-start.
Diffstat (limited to 'lisp/options.el')
-rw-r--r-- | lisp/options.el | 2 |
1 files changed, 1 insertions, 1 deletions
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") |