master f48072a7005: ; Fix comment locations.

Sean Whitton <[email protected]> Mon, 29 Jun 2026 05:51:10 -0400 (EDT)
Newsgroups gmane.emacs.diffs
Message-ID <[email protected]>
branch: master
commit f48072a7005853b4272075c6c2658f82011f400e
Author: Sean Whitton <[email protected]>
Commit: Sean Whitton <[email protected]>

    ; Fix comment locations.
---
 lisp/vc/vc.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el
index ef5cdd75182..7497150562f 100644
--- a/lisp/vc/vc.el
+++ b/lisp/vc/vc.el
@@ -4895,9 +4895,9 @@ tip revision are merged into the working file."
      ;; If a pull operation is defined, use it.
      (fn
       (funcall fn arg)
-      ;; FIXME: Ideally we would only clear out the stored value for the
-      ;; REMOTE-LOCATION from which we are pulling.
       (vc-run-delayed
+        ;; FIXME: Ideally we would only clear out the stored value for
+        ;; the REMOTE-LOCATION from which we are pulling.
         (vc--repo-setprop backend 'vc-incoming-revision nil)
         (when vc-dir-buffers
           (vc-dir--refresh-headers (vc-root-dir backend)))))
@@ -4940,9 +4940,9 @@ It also signals an error in a Bazaar bound branch."
 	 (backend (car fileset)))
     (if (vc-find-backend-function backend 'push)
         (progn (vc-call-backend backend 'push arg)
-               ;; FIXME: Ideally we would only clear out the
-               ;; REMOTE-LOCATION to which we are pushing.
                (vc-run-delayed
+                 ;; FIXME: Ideally we would only clear out the
+                 ;; REMOTE-LOCATION to which we are pushing.
                  (vc--repo-setprop backend 'vc-incoming-revision nil)
                  (when vc-dir-buffers
                    (vc-dir--refresh-headers (vc-root-dir backend)))))