We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9adbcf5 commit 364ceb1Copy full SHA for 364ceb1
emacs-codeql.el
@@ -98,6 +98,7 @@
98
(require 'org)
99
(require 'ol)
100
(require 'files)
101
+(require 'project)
102
103
;; bundled
104
(require 'json-pointer)
@@ -313,11 +314,8 @@ Leave nil for default.")
313
314
;; project.el integration for eglot
315
316
(defun codeql--find-project-root (path)
- (let ((root
317
- (or (locate-dominating-file path "qlpack.yml")
318
- (locate-dominating-file path "codeql-pack.yml"))))
319
- (when root (message "Found project root: %s" root)
320
- root)))
+ (or (locate-dominating-file path "qlpack.yml")
+ (locate-dominating-file path "codeql-pack.yml")))
321
322
(defun project-codeql (dir)
323
(let ((root (codeql--find-project-root dir)))
0 commit comments