OpenAppFilter icon indicating copy to clipboard operation
OpenAppFilter copied to clipboard

fix: The code in regexp.c attempts to assign the character following a backslash (\) to tmp->ch, but it should assign the current character pointed by regexp after increment, not the next one

Open RealHurrison opened this issue 9 months ago • 0 comments

This line attempts to assign the character following a backslash () to tmp->ch, but it should assign the current character pointed by regexp after increment, not the next one

RealHurrison avatar Apr 28 '24 06:04 RealHurrison