mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-05 18:52:39 +01:00
Fix relative paths on windows
This commit is contained in:
parent
1ddb76465a
commit
b5f78f484d
@ -515,8 +515,8 @@ re_channel (void)
|
||||
|
||||
/* PATH description --- */
|
||||
#ifdef WIN32
|
||||
/* Windows path can be C: D: etc */
|
||||
#define PATH "^([a-z]:).*"
|
||||
/* Windows path can be .\ ..\ or C: D: etc */
|
||||
#define PATH "^(\\.{1,2}\\\\|[a-z]:).*"
|
||||
#else
|
||||
/* Linux path can be / or ./ or ../ etc */
|
||||
#define PATH "^(/|\\./|\\.\\./).*"
|
||||
|
Loading…
Reference in New Issue
Block a user