]> git.eshelyaron.com Git - emacs.git/commitdiff
(browse-url-filename-alist): Use , not ,@ to add DOS/Windows specific association.
authorJason Rumney <jasonr@gnu.org>
Tue, 12 Sep 2000 20:21:39 +0000 (20:21 +0000)
committerJason Rumney <jasonr@gnu.org>
Tue, 12 Sep 2000 20:21:39 +0000 (20:21 +0000)
lisp/net/browse-url.el

index 57a28b5e5366e03d5506a6c2ea997bcef29f63e6..27b7aabb09548f2abb2dc97b5dddbed401669009 100644 (file)
@@ -325,7 +325,7 @@ commands reverses the effect of this variable.  Requires Netscape version
     ;; it in anonymous cases.  If it's not anonymous the next regexp
     ;; applies.
     ("^/\\([^:@]+@\\)?\\([^:]+\\):/*" . "ftp://\\1\\2/")
-    ,@(if (memq system-type '(windows-nt ms-dos))
+    ,(if (memq system-type '(windows-nt ms-dos))
          '("^\\([a-zA-Z]:\\)[\\/]" . "file:\\1/"))
     ("^/+" . "file:/"))
   "An alist of (REGEXP . STRING) pairs used by `browse-url-of-file'.