diff options
author | Karl Williamson <khw@cpan.org> | 2019-10-11 04:05:16 -0600 |
---|---|---|
committer | Nicolas R <atoomic@cpan.org> | 2019-11-08 12:01:13 -0700 |
commit | 479a294ee5254acc602bfac3c84f8c6a3beef6f4 (patch) | |
tree | b5d5c1074b4592935f5de54011373370690af12a /dist/Devel-PPPort/parts/inc/misc | |
parent | 87bd50faf5443aa74e7549707e9908ef26a0c153 (diff) | |
download | perl-479a294ee5254acc602bfac3c84f8c6a3beef6f4.tar.gz |
Perl 7.0 had a space as being a graphic char
(cherry picked from commit 36f9cc037debdf1d07fa92b2b99fa9b27ba3e8e2)
Signed-off-by: Nicolas R <atoomic@cpan.org>
Diffstat (limited to 'dist/Devel-PPPort/parts/inc/misc')
-rw-r--r-- | dist/Devel-PPPort/parts/inc/misc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dist/Devel-PPPort/parts/inc/misc b/dist/Devel-PPPort/parts/inc/misc index 72e1437f71..25892af9c8 100644 --- a/dist/Devel-PPPort/parts/inc/misc +++ b/dist/Devel-PPPort/parts/inc/misc @@ -475,6 +475,10 @@ __UNDEFINED__ isUPPER(c) ( (c) >= 'A' && (c) <= 'Z' # undef isUPPER_A # endif +# if { VERSION == 5.7.0 } /* this perl made space GRAPH */ +# undef isGRAPH +# endif + # if { VERSION < 5.8.0 } /* earlier perls omitted DEL */ # undef isCNTRL # endif |