diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2012-01-09 18:20:10 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2012-01-09 18:20:10 +0100 |
commit | 9f791ac60631a8d0bad226ab5e5b78122e363d2f (patch) | |
tree | 0d1748999f9107a8c29eb0fa1451f1a207e9a223 /Configure | |
parent | 269a7913af37c73e7822a085898f90d15d896882 (diff) | |
download | perl-9f791ac60631a8d0bad226ab5e5b78122e363d2f.tar.gz |
'A' is not blank
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ # See Porting/pumpkin.pod for more information on metaconfig. # -# Generated on Mon Jan 9 17:49:14 CET 2012 [metaconfig 3.5 PL0] +# Generated on Mon Jan 9 18:25:32 CET 2012 [metaconfig 3.5 PL0] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -14936,7 +14936,7 @@ $cat >isblank.c <<'EOCP' #include <stdio.h> #include <ctype.h> int main() { - int c = 'A'; + int c = ' '; if (isblank(c)) exit(0); else |