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 {
122
122
}
123
123
124
124
! header {
125
- sub (/\ #. + /, " " );
125
+ sub (/#. + /, " " );
126
126
sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
127
127
128
128
if (/^ $ /)
Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ code-from-errno.h: mkerrcodes$(EXEEXT_FOR_BUILD) Makefile
293
293
294
294
errnos-sym.h : Makefile mkstrtable.awk errnos.in
295
295
$(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_ \
297
297
$(srcdir ) /errnos.in > $@
298
298
299
299
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ header {
85
85
}
86
86
87
87
! header {
88
- sub (/\ #. + /, " " );
88
+ sub (/#. + /, " " );
89
89
sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
90
90
91
91
if (/^ $ /)
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ header {
81
81
}
82
82
83
83
! header {
84
- sub (/\ #. + /, " " );
84
+ sub (/#. + /, " " );
85
85
sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
86
86
87
87
if (/^ $ /)
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ header {
91
91
}
92
92
93
93
! header {
94
- sub (/\ #. + /, " " );
94
+ sub (/#. + /, " " );
95
95
sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
96
96
97
97
if (/^ $ /)
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ header {
83
83
}
84
84
85
85
! header {
86
- sub (/\ #. + /, " " );
86
+ sub (/#. + /, " " );
87
87
sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
88
88
89
89
if (/^ $ /)
Original file line number Diff line number Diff line change 77
77
#
78
78
# The variable prefix can be used to prepend a string to each message.
79
79
#
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
81
81
# variable and macro name.
82
82
83
83
BEGIN {
@@ -102,15 +102,15 @@ header {
102
102
print " /* The purpose of this complex string table is to produce" ;
103
103
print " optimal code with a minimum of relocations. */" ;
104
104
print " " ;
105
- print " static const char " namespace " msgstr[] = " ;
105
+ print " static const char " pkg_namespace " msgstr[] = " ;
106
106
header = 0 ;
107
107
}
108
108
else
109
109
print ;
110
110
}
111
111
112
112
! header {
113
- sub (/\ #. + /, " " );
113
+ sub (/#. + /, " " );
114
114
sub (/[ ]+ $ /, " " ); # Strip trailing space and tab characters.
115
115
116
116
if (/^ $ /)
@@ -150,15 +150,15 @@ END {
150
150
else
151
151
print " gettext_noop (\" " last_msgstr " \" );" ;
152
152
print " " ;
153
- print " static const int " namespace " msgidx[] =" ;
153
+ print " static const int " pkg_namespace " msgidx[] =" ;
154
154
print " {" ;
155
155
for (i = 0 ; i < coded_msgs; i++ )
156
156
print " " pos[ i] " ," ;
157
157
print " " pos[ coded_msgs] ;
158
158
print " };" ;
159
159
print " " ;
160
160
print " static GPG_ERR_INLINE int" ;
161
- print namespace " msgidxof (int code)" ;
161
+ print pkg_namespace " msgidxof (int code)" ;
162
162
print " {" ;
163
163
print " return (0 ? 0" ;
164
164
You can’t perform that action at this time.
0 commit comments