From 7aac8f171bc163972dfa972a2ffe0daa089b155b Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Mon, 24 Nov 2014 03:44:42 +0200 Subject: [PATCH] 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 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index afa0c680a8b..5c367b49cb8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2014-11-24 Dmitry Gutov + + * vc/vc-bzr.el (vc-bzr-after-dir-status): Don't skip ignored + files. (Bug#18579) + 2014-11-23 Michael Albinus * 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 e607f9d8d1a..66c7ac4a349 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 -- 2.39.5