diff options
| -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." | |||
| 1037 | (defun edt-indent-or-fill-region () | 1037 | (defun edt-indent-or-fill-region () |
| 1038 | "Fill region in text modes, indent region in programming language modes." | 1038 | "Fill region in text modes, indent region in programming language modes." |
| 1039 | (interactive "*") | 1039 | (interactive "*") |
| 1040 | (if (string= paragraph-start "^$\\|^\f") | 1040 | (if (string= paragraph-start "$\\|\f") |
| 1041 | (indent-region (point) (mark) nil) | 1041 | (indent-region (point) (mark) nil) |
| 1042 | (fill-region (point) (mark)))) | 1042 | (fill-region (point) (mark)))) |
| 1043 | 1043 | ||