# HG changeset patch # User Karl Heuer # Date 763680410 0 # Node ID 63033f2867fda72fcac07ea4e54fab70b3cfbb9e # Parent 32cb5a7228ab074ce04f9662ecb8d104a1e8d822 (indent-or-fill-region): Use printable escapes instead of embedding literal control chars in the source. diff -r 32cb5a7228ab -r 63033f2867fd lisp/emulation/edt.el --- a/lisp/emulation/edt.el Mon Mar 14 21:26:19 1994 +0000 +++ b/lisp/emulation/edt.el Mon Mar 14 21:26:50 1994 +0000 @@ -341,7 +341,7 @@ (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))))