conf: properly escape tab in whitespace class

This commit is contained in:
rofl0r 2020-10-09 00:23:33 +01:00
parent f1f3994d09
commit 3eb238634a

View File

@ -8,7 +8,7 @@
* given directive.
*/
#define DIGIT "[0-9]"
#define SPACE "[ \t]"
#define SPACE "[ \\t]"
#define WS SPACE "+"
#define STR "\"([^\"]+)\""
#define BOOL "(yes|on|no|off)"