]> git.eshelyaron.com Git - emacs.git/commitdiff
Show SVN status on "." directories, too
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 7 Mar 2022 02:47:13 +0000 (03:47 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 7 Mar 2022 02:47:13 +0000 (03:47 +0100)
* lisp/vc/vc-svn.el (vc-svn-after-dir-status): Allow tracking
state of the "." directory, too, since they may have modified
properties (bug#7861).

lisp/vc/vc-svn.el

index b38a676acbd61c949cc581363a3dfc6bbe8dbfad..3cf692bfdaa86a958e790f272cb438c71b7436d8 100644 (file)
@@ -201,8 +201,8 @@ switches."
             ;; FIXME are there other possible combinations?
             (cond ((eq state 'edited) (setq state 'needs-merge))
                   ((not state) (setq state 'needs-update))))
-       (when (and state (not (string= "." filename)))
-         (setq result (cons (list filename state) result)))))
+       (when state
+          (setq result (cons (list filename state) result)))))
     (funcall callback result)))
 
 ;; dir-status-files called from vc-dir, which loads vc,