diff options
author | Boris Goldowsky <boris@gnu.org> | 1995-03-01 15:55:32 +0000 |
---|---|---|
committer | Boris Goldowsky <boris@gnu.org> | 1995-03-01 15:55:32 +0000 |
commit | dabbbb65cf94d4aa49ea6c1ce4f658542958a2af (patch) | |
tree | 8f9ed46ea0966dab46b3ad8a0ddc0b226553ef91 /lisp/emulation/edt.el | |
parent | fccf1166818680686f8675b57a8ce8aa1f3b544b (diff) | |
download | emacs-dabbbb65cf94d4aa49ea6c1ce4f658542958a2af.tar.gz |
(edt-indent-or-fill-region): Remove ^ from paragraph-start & paragraph-separate.
Diffstat (limited to 'lisp/emulation/edt.el')
-rw-r--r-- | lisp/emulation/edt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el index 9b37397e415..d7f7d886291 100644 --- a/lisp/emulation/edt.el +++ b/lisp/emulation/edt.el @@ -1037,7 +1037,7 @@ Accepts a positive prefix argument for the number windows to move." (defun edt-indent-or-fill-region () "Fill region in text modes, indent region in programming language modes." (interactive "*") - (if (string= paragraph-start "^$\\|^\f") + (if (string= paragraph-start "$\\|\f") (indent-region (point) (mark) nil) (fill-region (point) (mark)))) |