]> git.eshelyaron.com Git - emacs.git/commitdiff
(browse-url-filename-alist): Allow UNC file
authorGerd Moellmann <gerd@gnu.org>
Thu, 10 May 2001 11:54:15 +0000 (11:54 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 10 May 2001 11:54:15 +0000 (11:54 +0000)
names for MS-Windows and MS-DOS.  From Dan Holmsand
<dan@eyebee.com>.

lisp/net/browse-url.el

index 793ced385e3e51dcba665e25fc32f3fd21b6d102..ee579d859c1e5ccb016d449ca31cc083929a4d2a 100644 (file)
@@ -331,7 +331,8 @@ commands reverses the effect of this variable.  Requires Netscape version
     ;; applies.
     ("^/\\([^:@]+@\\)?\\([^:]+\\):/*" . "ftp://\\1\\2/")
     (,@ (if (memq system-type '(windows-nt ms-dos))
-           '(("^\\([a-zA-Z]:\\)[\\/]" . "file:\\1/"))))
+           '(("^\\([a-zA-Z]:\\)[\\/]" . "file:\\1/")
+              ("^[\\/][\\/]+" . "file://"))))
     ("^/+" . "file:/")))
   "An alist of (REGEXP . STRING) pairs used by `browse-url-of-file'.
 Any substring of a filename matching one of the REGEXPs is replaced by