]> git.eshelyaron.com Git - emacs.git/commitdiff
Eglot: fix null scopeUri regression in workspace/configuration
authorIngo Lohmar <ingo.lohmar@posteo.net>
Sun, 13 Nov 2022 16:27:12 +0000 (17:27 +0100)
committerIngo Lohmar <ingo.lohmar@posteo.net>
Sun, 13 Nov 2022 16:48:36 +0000 (17:48 +0100)
* 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.

lisp/progmodes/eglot.el

index 98d5281d2c398525c9cd5cc5f395095533434aa9..12808e80c4a8b3ff5d7c833b2baea2634987410d 100644 (file)
@@ -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)