aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Távora2023-03-21 09:59:13 +0000
committerJoão Távora2023-03-21 14:43:11 +0000
commit35648a8673010a49720476821732df96ad8fa532 (patch)
treeda3b52d991197a7d1e86f86a9d4c383a368f6927
parent47d8e4b0d3835f5e0b0b6ab76f242ef0aa25bda7 (diff)
downloademacs-35648a8673010a49720476821732df96ad8fa532.tar.gz
emacs-35648a8673010a49720476821732df96ad8fa532.zip
; Delete accidental leftover '()' Eglot function
* lisp/progmodes/eglot.el (eglot--workspace-configuration-plist): Remove ().
-rw-r--r--lisp/progmodes/eglot.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
index 77428c5af07..76f70ead666 100644
--- a/lisp/progmodes/eglot.el
+++ b/lisp/progmodes/eglot.el
@@ -2480,7 +2480,7 @@ use the root of SERVER's `eglot--project'."
2480 ;; Set the major mode to be the first of the managed 2480 ;; Set the major mode to be the first of the managed
2481 ;; modes. This is the one the user started eglot in. 2481 ;; modes. This is the one the user started eglot in.
2482 (setq major-mode (car (eglot--major-modes server))) 2482 (setq major-mode (car (eglot--major-modes server)))
2483 (hack-dir-local-variables-non-file-buffer)() 2483 (hack-dir-local-variables-non-file-buffer)
2484 (if (functionp eglot-workspace-configuration) 2484 (if (functionp eglot-workspace-configuration)
2485 (funcall eglot-workspace-configuration server) 2485 (funcall eglot-workspace-configuration server)
2486 eglot-workspace-configuration)))) 2486 eglot-workspace-configuration))))