]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix auto-filling regression
authorTom Tromey <tom@tromey.com>
Wed, 9 Aug 2017 22:06:23 +0000 (16:06 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 9 Aug 2017 22:06:23 +0000 (16:06 -0600)
Bug#28003
* lisp/newcomment.el (comment-indent-new-line): Check
comment-auto-fill-only-comments.  Reverts earlier change.
* lisp/simple.el (internal-auto-fill): Call auto-fill-function, not
do-auto-fill.

lisp/newcomment.el
lisp/simple.el

index e3ee4dfab114891e722af7dcc4f37199d13c4962..8772b52376da761068f6af08eb2e698212591a08 100644 (file)
@@ -1382,9 +1382,10 @@ unless optional argument SOFT is non-nil."
   (interactive)
   (comment-normalize-vars t)
   (let (compos comin)
-    ;; If we are not inside a comment don't do anything (unless no
-    ;; comment syntax is defined).
+    ;; If we are not inside a comment and we only auto-fill comments,
+    ;; don't do anything (unless no comment syntax is defined).
     (unless (and comment-start
+                comment-auto-fill-only-comments
                 (not (called-interactively-p 'interactive))
                 (not (save-excursion
                        (prog1 (setq compos (comment-beginning))
index 9838f1644f83fedb3390da3095470d89979651ed..933ffc55a6bf847efaad802a88db7c3a26f90c72 100644 (file)
@@ -7243,7 +7243,7 @@ unless optional argument SOFT is non-nil."
   (when (or (not comment-start)
             (not comment-auto-fill-only-comments)
             (nth 4 (syntax-ppss)))
-    (do-auto-fill)))
+    (funcall auto-fill-function)))
 
 (defvar normal-auto-fill-function 'do-auto-fill
   "The function to use for `auto-fill-function' if Auto Fill mode is turned on.