]> git.eshelyaron.com Git - emacs.git/commitdiff
(file_name_absolute_p) [WINDOWSNT]: Support absolute file names with forward
authorEli Zaretskii <eliz@gnu.org>
Fri, 24 Nov 2006 20:59:01 +0000 (20:59 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 24 Nov 2006 20:59:01 +0000 (20:59 +0000)
slashes.

lib-src/ChangeLog
lib-src/emacsclient.c

index b756e6a5405afec462fce13942c21e6b79cbe06f..a81852057b200a7e76da3164307b0e5ef909f871 100644 (file)
@@ -1,3 +1,8 @@
+2006-11-24  Michael Mauger <mmaug@yahoo.com>
+
+       * emacsclient.c (file_name_absolute_p) [WINDOWSNT]: Support
+       absolute file names with forward slashes.
+
 2006-11-23  Juanma Barranquero  <lekktu@gmail.com>
 
        * emacsclient.c (print_help_and_exit): Tweak message contents and
index 3040206ef3422e2bd3c45d4923a4b65a739a005c..5e8b563984d9cc3fc977350020fdf3ba10c1cc80 100644 (file)
@@ -452,7 +452,7 @@ file_name_absolute_p (filename)
 #ifdef WINDOWSNT
   /* X:\xxx is always absolute; X:xxx is an error and will fail.  */
   if (islower (tolower (filename[0]))
-      && filename[1] == ':' && filename[2] == '\\')
+      && filename[1] == ':' && (filename[2] == '\\' || filename[2] == '/'))
     return TRUE;
 
   /* Both \xxx and \\xxx\yyy are absolute.  */