Skip to content

Commit 957c999

Browse files
committed
Fix editor_diagnostics tool
1 parent 2700ce6 commit 957c999

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

eca-util.el

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,10 @@
166166
"Convert a file URI to a file path."
167167
(cond
168168
((string-prefix-p "file:///" uri)
169-
(url-unhex-string (substring uri 8)))
170-
171-
((string-prefix-p "file://" uri)
172169
(url-unhex-string (substring uri 7)))
173170

171+
((string-prefix-p "file://" uri)
172+
(url-unhex-string (substring uri 6)))
174173

175174
(t uri)))
176175

0 commit comments

Comments
 (0)