File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ header {
122122}
123123
124124! header {
125- sub (/\ #. + /, " " );
125+ sub (/#. + /, " " );
126126 sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
127127
128128 if (/^ $ /)
Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ code-from-errno.h: mkerrcodes$(EXEEXT_FOR_BUILD) Makefile
293293
294294errnos-sym.h : Makefile mkstrtable.awk errnos.in
295295 $(AWK ) -f $(srcdir ) /mkstrtable.awk -v textidx=2 -v nogettext=1 \
296- -v prefix=GPG_ERR_ -v namespace =errnos_ \
296+ -v prefix=GPG_ERR_ -v pkg_namespace =errnos_ \
297297 $(srcdir ) /errnos.in > $@
298298
299299
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ header {
8585}
8686
8787! header {
88- sub (/\ #. + /, " " );
88+ sub (/#. + /, " " );
8989 sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
9090
9191 if (/^ $ /)
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ header {
8181}
8282
8383! header {
84- sub (/\ #. + /, " " );
84+ sub (/#. + /, " " );
8585 sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
8686
8787 if (/^ $ /)
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ header {
9191}
9292
9393! header {
94- sub (/\ #. + /, " " );
94+ sub (/#. + /, " " );
9595 sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
9696
9797 if (/^ $ /)
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ header {
8383}
8484
8585! header {
86- sub (/\ #. + /, " " );
86+ sub (/#. + /, " " );
8787 sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
8888
8989 if (/^ $ /)
Original file line number Diff line number Diff line change 7777#
7878# The variable prefix can be used to prepend a string to each message.
7979#
80- # The variable namespace can be used to prepend a string to each
80+ # The variable pkg_namespace can be used to prepend a string to each
8181# variable and macro name.
8282
8383BEGIN {
@@ -102,15 +102,15 @@ header {
102102 print " /* The purpose of this complex string table is to produce" ;
103103 print " optimal code with a minimum of relocations. */" ;
104104 print " " ;
105- print " static const char " namespace " msgstr[] = " ;
105+ print " static const char " pkg_namespace " msgstr[] = " ;
106106 header = 0 ;
107107 }
108108 else
109109 print ;
110110}
111111
112112! header {
113- sub (/\ #. + /, " " );
113+ sub (/#. + /, " " );
114114 sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
115115
116116 if (/^ $ /)
@@ -150,15 +150,15 @@ END {
150150 else
151151 print " gettext_noop (\" " last_msgstr " \" );" ;
152152 print " " ;
153- print " static const int " namespace " msgidx[] =" ;
153+ print " static const int " pkg_namespace " msgidx[] =" ;
154154 print " {" ;
155155 for (i = 0 ; i < coded_msgs; i++ )
156156 print " " pos[ i] " ," ;
157157 print " " pos[ coded_msgs] ;
158158 print " };" ;
159159 print " " ;
160160 print " static GPG_ERR_INLINE int" ;
161- print namespace " msgidxof (int code)" ;
161+ print pkg_namespace " msgidxof (int code)" ;
162162 print " {" ;
163163 print " return (0 ? 0" ;
164164
You can’t perform that action at this time.
0 commit comments