This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
'A' is not blank
authorH.Merijn Brand <h.m.brand@xs4all.nl>
Mon, 9 Jan 2012 17:20:10 +0000 (18:20 +0100)
committerH.Merijn Brand <h.m.brand@xs4all.nl>
Mon, 9 Jan 2012 17:20:10 +0000 (18:20 +0100)
Configure

index 6f4a02d..9abfe64 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -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