From e357be4cbeebbf7c03967c015ffe9a626ae4f5f1 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 14 Mar 1994 21:26:50 +0000 Subject: [PATCH] (indent-or-fill-region): Use printable escapes instead of embedding literal control chars in the source. --- lisp/emulation/edt.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))) -- 2.39.5