diff options
Diffstat (limited to 'lisp')
-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)))) |