Fix relative paths on windows
This commit is contained in:
parent
1ddb76465a
commit
b5f78f484d
|
@ -515,8 +515,8 @@ re_channel (void)
|
||||||
|
|
||||||
/* PATH description --- */
|
/* PATH description --- */
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
/* Windows path can be C: D: etc */
|
/* Windows path can be .\ ..\ or C: D: etc */
|
||||||
#define PATH "^([a-z]:).*"
|
#define PATH "^(\\.{1,2}\\\\|[a-z]:).*"
|
||||||
#else
|
#else
|
||||||
/* Linux path can be / or ./ or ../ etc */
|
/* Linux path can be / or ./ or ../ etc */
|
||||||
#define PATH "^(/|\\./|\\.\\./).*"
|
#define PATH "^(/|\\./|\\.\\./).*"
|
||||||
|
|
Loading…
Reference in New Issue