+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
#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. */