summaryrefslogtreecommitdiff
path: root/common/.emacs.d/init.el
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-10-01 11:15:36 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-10-01 11:15:36 -0500
commit4a4c421f10daf139460b436695cef85c220551d4 (patch)
tree31ad2667e8b6fecac7aa63e9c42bdf2c9e76e329 /common/.emacs.d/init.el
parent95d7f9c741cadccb4c7005a1a18039452fd96e6d (diff)
downloaddotfiles-4a4c421f10daf139460b436695cef85c220551d4.tar.gz
dotfiles-4a4c421f10daf139460b436695cef85c220551d4.zip
Emacs/Eshell: Pass `noerror' to `vc-responsible-backend'
Diffstat (limited to 'common/.emacs.d/init.el')
-rw-r--r--common/.emacs.d/init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/.emacs.d/init.el b/common/.emacs.d/init.el
index 1cc30a8..1aebc7b 100644
--- a/common/.emacs.d/init.el
+++ b/common/.emacs.d/init.el
@@ -2577,7 +2577,7 @@ Only works on a single file."
(if-let* ((dir (or dir (eshell/pwd)))
(prj (project-current nil dir))
(dir (project-root prj))
- (vc (vc-responsible-backend dir)))
+ (vc (vc-responsible-backend dir 'noerror)))
(let* ((dirty
(if (my/vc-dirty-p dir)
"*" ""))