projects
/
perl.git
/ commitdiff
free
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
ba4591a
)
handy.h: Change EBCDIC isSPACE() to include \v
author
Karl Williamson <public@khwilliamson.com>
Sun, 2 Dec 2012 19:13:36 +0000 (12:13 -0700)
committer
Karl Williamson <public@khwilliamson.com>
Sun, 9 Dec 2012 17:29:59 +0000 (10:29 -0700)
This was missed in commit
075b9d7d9a6d4473b240a047655e507c8baa6db3
handy.h
patch
|
blob
|
blame
|
history
diff --git
a/handy.h
b/handy.h
index
5134c9d
..
dee0bff
100644
(file)
--- a/
handy.h
+++ b/
handy.h
@@
-784,7
+784,8
@@
EXTCONST U32 PL_charclass[];
# define isPRINT(c) isprint(c)
# define isPSXSPC(c) isspace(c)
# define isPUNCT(c) ispunct(c)
-# define isSPACE(c) (isPSXSPC(c) && (c) != '\v')
+# define isSPACE(c) (isPSXSPC(c) /* && (c) != '\v' (Experimentally making
+ these macros identical) */)
# define isUPPER(c) isupper(c)
# define isXDIGIT(c) isxdigit(c)
# define isWORDCHAR(c) (isalnum(c) || (c) == '_')