* source.c (open): Strip DOS drive letter if present before
concatenating string to search path.
This commit is contained in:
parent
58cd914490
commit
e6d9b9c2fa
2 changed files with 9 additions and 0 deletions
|
@ -724,6 +724,10 @@ openp (const char *path, int opts, const char *string,
|
|||
goto done;
|
||||
}
|
||||
|
||||
/* For dos paths, d:/foo -> /foo, and d:foo -> foo. */
|
||||
if (HAS_DRIVE_SPEC (string))
|
||||
string = STRIP_DRIVE_SPEC (string);
|
||||
|
||||
/* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
|
||||
while (IS_DIR_SEPARATOR(string[0]))
|
||||
string++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue