Bug 703371: Add '-' to list of quoted escape characters in regex parser.

This commit is contained in:
Tor Andersson
2021-01-25 17:49:06 +01:00
parent 789f30b587
commit d3a99000e0

View File

@@ -107,7 +107,7 @@ static int dec(struct cstate *g, int c)
return 0; return 0;
} }
#define ESCAPES "BbDdSsWw^$\\.*+?()[]{}|0123456789" #define ESCAPES "BbDdSsWw^$\\.*+?()[]{}|-0123456789"
static int isunicodeletter(int c) static int isunicodeletter(int c)
{ {