1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

(do-auto-fill): `fill-indent-according-to-mode' is a variable, not a

function.
This commit is contained in:
Miles Bader 2002-09-10 01:24:12 +00:00
parent 1698f7888a
commit 0e53a3732a
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2002-09-10 Miles Bader <miles@gnu.org>
* simple.el (do-auto-fill): `fill-indent-according-to-mode' is a
variable, not a function.
* kmacro.el (kmacro-call-macro): Deal with a non-numeric prefix arg.
2002-09-10 Kim F. Storm <storm@cua.dk>
* macros.el (apply-macro-to-region-lines): Let-bind mark-active to

View File

@ -3084,7 +3084,7 @@ Setting this variable automatically makes it local to the current buffer.")
(save-excursion (forward-paragraph 1) (point)))))
(and prefix (not (equal prefix ""))
;; Use auto-indentation rather than a guessed empty prefix.
(not (and (fill-indent-according-to-mode)
(not (and fill-indent-according-to-mode
(string-match "\\`[ \t]*\\'" prefix)))
(setq fill-prefix prefix))))