[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] scratch/project 0b6fd17 4/5: project-try-vc: Ignore errors
From: |
Dmitry Gutov |
Subject: |
[Emacs-diffs] scratch/project 0b6fd17 4/5: project-try-vc: Ignore errors |
Date: |
Wed, 08 Jul 2015 13:02:37 +0000 |
branch: scratch/project
commit 0b6fd17a58f0b45a63418f6972047f98a3e8e8b9
Author: Dmitry Gutov <address@hidden>
Commit: Dmitry Gutov <address@hidden>
project-try-vc: Ignore errors
---
lisp/progmodes/project.el | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index ad9b72b..118095a 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -60,7 +60,7 @@ be edited together). The directory names should be absolute."
(list (project-root project)))
(defun project-try-vc (dir)
- (let* ((backend (vc-responsible-backend dir))
+ (let* ((backend (ignore-errors (vc-responsible-backend dir)))
(root (and backend (ignore-errors
(vc-call-backend backend 'root dir)))))
(and root (cons 'vc root))))
- [Emacs-diffs] scratch/project updated (106e023 -> fc4ab93), Dmitry Gutov, 2015/07/08
- [Emacs-diffs] scratch/project 97b4004 3/5: project-try-ede: Make it work, Dmitry Gutov, 2015/07/08
- [Emacs-diffs] scratch/project 85156f5 1/5: Rename project{, -find}-functions and update some docstrings, Dmitry Gutov, 2015/07/08
- [Emacs-diffs] scratch/project b3cc9f0 2/5: project-try-vc: Integrate with VC, Dmitry Gutov, 2015/07/08
- [Emacs-diffs] scratch/project 0b6fd17 4/5: project-try-vc: Ignore errors,
Dmitry Gutov <=
- [Emacs-diffs] scratch/project fc4ab93 5/5: Actually define project-root for a `user' project, Dmitry Gutov, 2015/07/08