From 23b49c0178d0c651c3af115fe2f357df0cdaaf01 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Fri, 11 Nov 2022 09:30:49 +0000 Subject: [PATCH] ; Tweak comment in lisp/progmodes/eglot.el (bug#58790) * lisp/progmodes/eglot.el (eglot--uri-to-path): Tweak comment. --- lisp/progmodes/eglot.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 7c80c8826ad..7935272705d 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -1522,7 +1522,9 @@ If optional MARKER, return a marker instead" (let* ((server (eglot-current-server)) (remote-prefix (and server (eglot--trampish-p server))) (url (url-generic-parse-url uri))) - ;; Only attempt to parse URIs with the file scheme. + ;; Only parse file:// URIs, leave other URI untouched as + ;; `file-name-handler-alist' should know how to handle them + ;; (bug#58790). (if (string= "file" (url-type url)) (let* ((retval (url-unhex-string (url-filename url))) ;; Remove the leading "/" for local MS Windows-style paths. @@ -1532,8 +1534,7 @@ If optional MARKER, return a marker instead" (substring retval 1) retval))) (concat remote-prefix normalized)) - ;; Leave non-file type URIs untouched, `file-name-handler-alist' - ;; handlers can be used to dispatch them properly. + uri))) (defun eglot--snippet-expansion-fn () -- 2.39.5