diff options
| author | Boris Goldowsky | 1995-03-01 15:55:32 +0000 |
|---|---|---|
| committer | Boris Goldowsky | 1995-03-01 15:55:32 +0000 |
| commit | dabbbb65cf94d4aa49ea6c1ce4f658542958a2af (patch) | |
| tree | 8f9ed46ea0966dab46b3ad8a0ddc0b226553ef91 | |
| parent | fccf1166818680686f8675b57a8ce8aa1f3b544b (diff) | |
| download | emacs-dabbbb65cf94d4aa49ea6c1ce4f658542958a2af.tar.gz emacs-dabbbb65cf94d4aa49ea6c1ce4f658542958a2af.zip | |
(edt-indent-or-fill-region): Remove ^ from paragraph-start & paragraph-separate.
| -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 | ||