]> git.eshelyaron.com Git - emacs.git/commitdiff
(do-auto-fill): `fill-indent-according-to-mode' is a variable, not a
authorMiles Bader <miles@gnu.org>
Tue, 10 Sep 2002 01:24:12 +0000 (01:24 +0000)
committerMiles Bader <miles@gnu.org>
Tue, 10 Sep 2002 01:24:12 +0000 (01:24 +0000)
function.

lisp/ChangeLog
lisp/simple.el

index 784ee855f20fbe252c933e398e966201b5ba4b5d..ddfc6be823a2bee275acd95d79fd46cbb772750a 100644 (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
index 6d1dbe1db7cc62949de9b071507caa8727e0af5a..99cf8d8af63f32269f4c97ac0b7ef2b692191e9c 100644 (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))))