Fix DND on MS-Windows with files from UNC directories
* lisp/dnd.el (dnd-get-local-file-uri): Always return nil on MS-Windows, as this method cannot possibly work there: URIs that begin with the local system's name are UNCs, where the //SERVER part cannot be removed. (Bug#34675)
This commit is contained in:
parent
7523a9e8b2
commit
d2b5f445c1
1 changed files with 1 additions and 0 deletions
|
@ -130,6 +130,7 @@ Return nil if URI is not a local file."
|
|||
(match-string 0 sysname)
|
||||
sysname))))
|
||||
(when (and hostname
|
||||
(not (eq system-type 'windows-nt))
|
||||
(or (string-equal "localhost" hostname)
|
||||
(string-equal (downcase sysname) hostname)
|
||||
(string-equal sysname-no-dot hostname)))
|
||||
|
|
Loading…
Add table
Reference in a new issue