emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-24 01/01: Fixes: debbugs:18579


From: Dmitry Gutov
Subject: [Emacs-diffs] emacs-24 01/01: Fixes: debbugs:18579
Date: Mon, 24 Nov 2014 01:54:10 +0000

branch: emacs-24
commit 7aac8f171bc163972dfa972a2ffe0daa089b155b
Author: Dmitry Gutov <address@hidden>
Date:   Mon Nov 24 03:44:42 2014 +0200

    Fixes: debbugs:18579
    
    * lisp/vc/vc-bzr.el (vc-bzr-after-dir-status): Don't skip ignored
    files.
---
 lisp/ChangeLog    |    5 +++++
 lisp/vc/vc-bzr.el |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index afa0c68..5c367b4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2014-11-24  Dmitry Gutov  <address@hidden>
+
+       * vc/vc-bzr.el (vc-bzr-after-dir-status): Don't skip ignored
+       files.  (Bug#18579)
+
 2014-11-23  Michael Albinus  <address@hidden>
 
        * textmodes/makeinfo.el (makeinfo-buffer): Make it work also for
diff --git a/lisp/vc/vc-bzr.el b/lisp/vc/vc-bzr.el
index e607f9d..66c7ac4 100644
--- a/lisp/vc/vc-bzr.el
+++ b/lisp/vc/vc-bzr.el
@@ -983,7 +983,7 @@ stream.  Standard error output is discarded."
               (push (list new-name 'edited
                           (vc-bzr-create-extra-fileinfo old-name)) result)))
            ;; do nothing for non existent files
-           ((memq translated '(not-found ignored)))
+           ((eq translated 'not-found))
            (t
             (push (list (file-relative-name
                          (buffer-substring-no-properties



reply via email to

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