summaryrefslogtreecommitdiff
path: root/lisp/vc/vc.el
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2018-02-13 14:05:20 +0100
committerAndreas Schwab <schwab@suse.de>2018-02-13 14:05:49 +0100
commit52ca0d1a3e01a3af8b482bd1f174f48a5c0b1fa2 (patch)
tree5608102792bb7613c93467704e77e7563e2f7644 /lisp/vc/vc.el
parent69e804669bacfef05c1ecdcd3f664dd486273db4 (diff)
downloademacs-52ca0d1a3e01a3af8b482bd1f174f48a5c0b1fa2.tar.gz
emacs-52ca0d1a3e01a3af8b482bd1f174f48a5c0b1fa2.tar.bz2
emacs-52ca0d1a3e01a3af8b482bd1f174f48a5c0b1fa2.zip
* lisp/vc/vc.el (vc-deduce-backend): Use ignore-errors.
Diffstat (limited to 'lisp/vc/vc.el')
-rw-r--r--lisp/vc/vc.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el
index e767deace2e..a0b4cc92719 100644
--- a/lisp/vc/vc.el
+++ b/lisp/vc/vc.el
@@ -996,9 +996,7 @@ Within directories, only files already under version control are noticed."
((derived-mode-p 'diff-mode) diff-vc-backend)
;; Maybe we could even use comint-mode rather than shell-mode?
((derived-mode-p 'dired-mode 'shell-mode 'compilation-mode)
- (condition-case nil
- (vc-responsible-backend default-directory)
- (error nil)))
+ (ignore-errors (vc-responsible-backend default-directory)))
(vc-mode (vc-backend buffer-file-name))))
(declare-function vc-dir-current-file "vc-dir" ())