summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2019-04-15 15:10:44 +0900
committerNIIBE Yutaka <gniibe@fsij.org>2019-04-15 15:10:44 +0900
commit7865041c77f4f7005282f10f9b6666b19072fbdf (patch)
tree251262aef8f61b3d501f46e31f63714a5c124b5a /lang
parent86cb22ad3b7ae8121d92725bccf7301fd98655fc (diff)
downloadlibgpg-error-7865041c77f4f7005282f10f9b6666b19072fbdf.tar.gz
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 <gniibe@fsij.org>
Diffstat (limited to 'lang')
-rw-r--r--lang/cl/mkerrcodes.awk2
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 (/^$/)