Marc Stern
Marc Stern
Unclean PR, to be replaced by another one
If I implement this PR, would it be accepted?
This allows to know what's the offending character. Very useful in complex configurations with multiple , defined variables, macros, etc.
What about limiting it to 9 then? It would be easy: if (capture && count < 10)
I adapted the PR
Unclean PR, to be replaced by another one
> Hi @marcstern , > I assume this is meant to address this issue that you raised?: #2472 Correct
Unclean PR, to be replaced by another one
Hi @martinhsv, 1. Indeed, some escape sequences could be replaced by posix character classes, but I'm pretty sure we can find some that cannot. 2. Using LUA is only possible...
Hi @martinhsv , Here is my proposal: 1. replace `if ((*(p + 1) == '\0') || ((*(p + 1) != '\'') && (*(p + 1) != '\\'))) {` by `if...