From: Ingo Lohmar Date: Sun, 13 Nov 2022 16:27:12 +0000 (+0100) Subject: Eglot: fix null scopeUri regression in workspace/configuration X-Git-Tag: emacs-29.0.90~1616^2~169 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7d53164162b3e36b53f52f4132cea3202919f749;p=emacs.git Eglot: fix null scopeUri regression in workspace/configuration * lisp/progmodes/eglot.el (eglot-handle-request): Commit 1a2d603bb3938ff68ed1a5412d131b41efd40a24 changed `eglot--uri-to-path' to return a nil uri untouched. (Before, `url-unhex-string' turned the parsed all-nil uri record into the empty string.) A nil return value must now be handled in the caller, do that for the workspace/configuration handler to avoid an uncaught error. --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 98d5281d2c3..12808e80c4a 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -2368,10 +2368,11 @@ When called interactively, use the currently active server" (with-temp-buffer (let* ((uri-path (eglot--uri-to-path scopeUri)) (default-directory - (if (and (not (string-empty-p uri-path)) - (file-directory-p uri-path)) - (file-name-as-directory uri-path) - (project-root (eglot--project server))))) + (if (and uri-path + (not (string-empty-p uri-path)) + (file-directory-p uri-path)) + (file-name-as-directory uri-path) + (project-root (eglot--project server))))) (setq-local major-mode (car (eglot--major-modes server))) (hack-dir-local-variables-non-file-buffer) (cl-loop for (wsection o)