Daniel Ajoy
2019-07-08 02:44:43 UTC
3. The regex routines have been replaced with those from GNULIB, allowing
me to stop carrying forward decades of changes against the original
ones from GLIBC.
Hello,me to stop carrying forward decades of changes against the original
ones from GLIBC.
I used to be able to use these regexp forms:
/ \"GET/ { ... }
now I get a warning:
warning: regexp escape sequence `\"' is not a known regexp operator
Should I change my code in this way:
/ "GET/ { ... }
This page:
https://github.com/soimort/translate-shell/issues/285
is confusing to me and makes be think that maybe I shouldn't, and that the issue will go away in a new gawk release.
Daniel