aboutsummaryrefslogtreecommitdiff
path: root/py/unicode.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-10 11:39:36 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-10 11:39:36 +0100
commit175cecfa87887bfa140c7ab0ce52f4b5160096c7 (patch)
tree0f23289b76161502373cf6afcc791aadf0c37418 /py/unicode.c
parenta91f41407bae9d50213ad9dcae5c21fc7551750f (diff)
py: Make form-feed character a space (following C isspace).
Eg, in CPython stdlib, email/header.py has a form-feed character.
Diffstat (limited to 'py/unicode.c')
-rw-r--r--py/unicode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/unicode.c b/py/unicode.c
index a20527cb2..4bdf03387 100644
--- a/py/unicode.c
+++ b/py/unicode.c
@@ -22,7 +22,7 @@
// table of attributes for ascii characters
STATIC const uint8_t attr[] = {
0, 0, 0, 0, 0, 0, 0, 0,
- 0, AT_SP, AT_SP, AT_SP, 0, AT_SP, 0, 0,
+ 0, AT_SP, AT_SP, AT_SP, AT_SP, AT_SP, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
AT_SP, AT_PR, AT_PR, AT_PR, AT_PR, AT_PR, AT_PR, AT_PR,