diff options
Diffstat (limited to 'asm')
-rwxr-xr-x | asm/pptok.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asm/pptok.pl b/asm/pptok.pl index e01334ff..a4853f2e 100755 --- a/asm/pptok.pl +++ b/asm/pptok.pl @@ -203,7 +203,7 @@ if ($what eq 'c') { # Note that this is global. printf OUT "const char * const pp_directives[%d] = {\n", scalar(@pptok); foreach $d (@pptok) { - if (defined($d)) { + if (defined($d) && $d !~ /[A-Z]/) { print OUT " \"%$d\",\n"; } else { print OUT " NULL,\n"; |