(indent-or-fill-region): Use printable escapes instead of embedding literal

control chars in the source.
This commit is contained in:
Karl Heuer 1994-03-14 21:26:50 +00:00
parent 98526426f4
commit e357be4cbe

View file

@ -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))))