From: João Távora Date: Tue, 21 Mar 2023 09:59:13 +0000 (+0000) Subject: ; Delete accidental leftover '()' Eglot function X-Git-Tag: emacs-29.0.90~117 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=35648a8673010a49720476821732df96ad8fa532;p=emacs.git ; Delete accidental leftover '()' Eglot function * lisp/progmodes/eglot.el (eglot--workspace-configuration-plist): Remove (). --- 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'." ;; Set the major mode to be the first of the managed ;; modes. This is the one the user started eglot in. (setq major-mode (car (eglot--major-modes server))) - (hack-dir-local-variables-non-file-buffer)() + (hack-dir-local-variables-non-file-buffer) (if (functionp eglot-workspace-configuration) (funcall eglot-workspace-configuration server) eglot-workspace-configuration))))