summary refs log tree commit diff stats
path: root/lisp/+consult.el
diff options
context:
space:
mode:
authorCase Duckworth2022-05-09 20:37:17 -0500
committerCase Duckworth2022-05-09 20:37:17 -0500
commit4c4dd0e7824d4bf634923de19e14bbb9274c9408 (patch)
tree0928862fe65aa99249acf42c2168160a18088a21 /lisp/+consult.el
parentmeh (diff)
parentFurther modeline changes (diff)
downloademacs-4c4dd0e7824d4bf634923de19e14bbb9274c9408.tar.gz
emacs-4c4dd0e7824d4bf634923de19e14bbb9274c9408.zip
Merged
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 dc06ad5..21c2565 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