]> git.eshelyaron.com Git - emacs.git/commitdiff
(do-auto-fill): Return t if real work was done.
authorKarl Heuer <kwzh@gnu.org>
Tue, 21 May 1996 14:31:40 +0000 (14:31 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 21 May 1996 14:31:40 +0000 (14:31 +0000)
lisp/simple.el

index 829f39083d69e7688dec5d30b78c69912f3f12c3..bdacf04b1df7f16f503607f0e17bf216015fcffb 100644 (file)
@@ -2330,6 +2330,9 @@ Setting this variable automatically makes it local to the current buffer.")
 (defconst auto-fill-inhibit-regexp nil
   "*Regexp to match lines which should not be auto-filled.")
 
+;; This function is the auto-fill-function of a buffer
+;; when Auto-Fill mode is enabled.
+;; It returns t if it really did any work.
 (defun do-auto-fill ()
   (let (fc justify bol give-up
           (fill-prefix fill-prefix))
@@ -2419,7 +2422,8 @@ Setting this variable automatically makes it local to the current buffer.")
            ;; No place to break => stop trying.
            (setq give-up t))))
       ;; justify last line
-      (justify-current-line justify t t)))) 
+      (justify-current-line justify t t)
+      t))) 
 
 (defun auto-fill-mode (&optional arg)
   "Toggle auto-fill mode.