From: Karl Heuer Date: Mon, 14 Mar 1994 21:26:50 +0000 (+0000) Subject: (indent-or-fill-region): Use printable escapes instead of embedding literal X-Git-Tag: emacs-19.34~9514 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e357be4cbeebbf7c03967c015ffe9a626ae4f5f1;p=emacs.git (indent-or-fill-region): Use printable escapes instead of embedding literal control chars in the source. --- 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." (defun indent-or-fill-region () "Fill region in text modes, indent region in programming language modes." (interactive) - (if (string= paragraph-start "^$\\|^ ") + (if (string= paragraph-start "^$\\|^\f") (indent-region (point) (mark) nil) (fill-region (point) (mark))))