diff options
| author | Karl Heuer | 1994-03-14 21:26:50 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-03-14 21:26:50 +0000 |
| commit | e357be4cbeebbf7c03967c015ffe9a626ae4f5f1 (patch) | |
| tree | 511aaf1027bf47bee09fa159a4f86cc4525ae625 | |
| parent | 98526426f434315be161dfc6016b5c6cb50de0d1 (diff) | |
| download | emacs-e357be4cbeebbf7c03967c015ffe9a626ae4f5f1.tar.gz emacs-e357be4cbeebbf7c03967c015ffe9a626ae4f5f1.zip | |
(indent-or-fill-region): Use printable escapes instead of embedding literal
control chars in the source.
| -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 8e186d45abd..b6bc4071f8b 100644 --- a/lisp/emulation/edt.el +++ b/lisp/emulation/edt.el | |||
| @@ -341,7 +341,7 @@ Accepts a prefix argument of the number of characters to invert." | |||
| 341 | (defun indent-or-fill-region () | 341 | (defun indent-or-fill-region () |
| 342 | "Fill region in text modes, indent region in programming language modes." | 342 | "Fill region in text modes, indent region in programming language modes." |
| 343 | (interactive) | 343 | (interactive) |
| 344 | (if (string= paragraph-start "^$\\|^") | 344 | (if (string= paragraph-start "^$\\|^\f") |
| 345 | (indent-region (point) (mark) nil) | 345 | (indent-region (point) (mark) nil) |
| 346 | (fill-region (point) (mark)))) | 346 | (fill-region (point) (mark)))) |
| 347 | 347 | ||