emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master e07a36f267 1/2: Show SVN status on "." directories, too


From: Lars Ingebrigtsen
Subject: master e07a36f267 1/2: Show SVN status on "." directories, too
Date: Sun, 6 Mar 2022 21:53:27 -0500 (EST)

branch: master
commit e07a36f2672d25a9ca7974a0a34e95e565304227
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Show SVN status on "." directories, too
    
    * 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 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/vc/vc-svn.el b/lisp/vc/vc-svn.el
index b38a676acb..3cf692bfda 100644
--- a/lisp/vc/vc-svn.el
+++ b/lisp/vc/vc-svn.el
@@ -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,



reply via email to

[Prev in Thread] Current Thread [Next in Thread]