summary refs log tree commit diff stats
path: root/lisp/+consult.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-14 21:03:36 -0600
committerCase Duckworth2022-01-14 21:03:36 -0600
commit0495456fb904bf291a71ff87d59a5dda5d0c298d (patch)
tree3bf15e38022280362091cd699ce8da21d2a2a27a /lisp/+consult.el
parentMerge branch 'main' of https://tildegit.org/acdw/emacs (diff)
downloademacs-0495456fb904bf291a71ff87d59a5dda5d0c298d.tar.gz
emacs-0495456fb904bf291a71ff87d59a5dda5d0c298d.zip
Ch ch ch changes
Diffstat (limited to 'lisp/+consult.el')
-rw-r--r--lisp/+consult.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/+consult.el b/lisp/+consult.el index 7b6a20f..0f5bf45 100644 --- a/lisp/+consult.el +++ b/lisp/+consult.el
@@ -5,7 +5,7 @@
5(defun +consult-project-root () 5(defun +consult-project-root ()
6 "Return either the current project, or the VC root, of current file." 6 "Return either the current project, or the VC root, of current file."
7 (if (and (functionp 'project-current) 7 (if (and (functionp 'project-current)
8 (project-current)) 8 (project-current))
9 (car (project-roots (project-current))) 9 (car (project-roots (project-current)))
10 (vc-root-dir))) 10 (vc-root-dir)))
11 11