]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/progmodes/eglot.el (eglot--path-to-uri): Improve commentary.
authorEli Zaretskii <eliz@gnu.org>
Fri, 11 Nov 2022 08:21:45 +0000 (10:21 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 11 Nov 2022 08:21:45 +0000 (10:21 +0200)
lisp/progmodes/eglot.el

index 2463f68f9711862365adc96634d6f634b8706e9e..23f6d8e76d438bffff659f9278caf6adb8ea30e8 100644 (file)
@@ -1502,7 +1502,9 @@ If optional MARKER, return a marker instead"
   "URIfy PATH."
   (let ((truepath (file-truename path)))
     (if (url-type (url-generic-parse-url truepath))
-        ;; Path is already a URI, so forward it to the lsp server untouched.
+        ;; Path is already a URI, so forward it to the LSP server
+        ;; untouched.  The server shopuld be able to handle it, since
+        ;; it provided this URI to clients in the first place.
         truepath
       (concat "file://"
               ;; Add a leading "/" for local MS Windows-style paths.