(indent-or-fill-region): Use printable escapes instead of embedding literal
control chars in the source.
This commit is contained in:
parent
98526426f4
commit
e357be4cbe
1 changed files with 1 additions and 1 deletions
|
@ -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))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue