diff options
author | NIIBE Yutaka <[email protected]> | 2019-04-15 06:10:44 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2019-04-15 06:10:44 +0000 |
commit | 7865041c77f4f7005282f10f9b6666b19072fbdf (patch) | |
tree | 251262aef8f61b3d501f46e31f63714a5c124b5a /lang/cl/mkerrcodes.awk | |
parent | yat2m: Change style for @samp and add @kbd. (diff) | |
download | libgpg-error-7865041c77f4f7005282f10f9b6666b19072fbdf.tar.gz libgpg-error-7865041c77f4f7005282f10f9b6666b19072fbdf.zip |
awk: Prepare for Gawk 5.0.
* src/Makefile.am: Use pkg_namespace (instead of namespace).
* src/mkerrnos.awk: Likewise.
* lang/cl/mkerrcodes.awk: Don't escape # in regexp.
* src/mkerrcodes.awk, src/mkerrcodes1.awk, src/mkerrcodes2.awk: Ditto.
--
In Gawk 5.0, regexp routines are replaced by Gnulib implementation,
which only allows escaping specific characters.
GnuPG-bug-id: 4459
Reported-by: Marius Schamschula
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | lang/cl/mkerrcodes.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/cl/mkerrcodes.awk b/lang/cl/mkerrcodes.awk index ae29043..9a1fc18 100644 --- a/lang/cl/mkerrcodes.awk +++ b/lang/cl/mkerrcodes.awk @@ -122,7 +122,7 @@ header { } !header { - sub (/\#.+/, ""); + sub (/#.+/, ""); sub (/[ ]+$/, ""); # Strip trailing space and tab characters. if (/^$/) |