summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-12-02 21:01:12 -0700
committerKarl Williamson <public@khwilliamson.com>2012-12-09 10:30:00 -0700
commit5092f92a753474f7a1ed5525e874cb0904427ae5 (patch)
treec13eca25ad226086c186e29d1ab78b75f4d79edc /intrpvar.h
parente712593e71e0d665d0aed1b3e126cda71bb5eda1 (diff)
downloadperl-5092f92a753474f7a1ed5525e874cb0904427ae5.tar.gz
Add functions for getting ctype ALNUMC
We think this is meant to stand for C's alphanumeric, that is what is matched by POSIX [:alnum:]. There were not functions and a dedicated swash available for accessing it. Future commits will want to use these.
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h
index f58c0d1e53..d905208282 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -614,6 +614,7 @@ PERLVAR(I, HasMultiCharFold, SV *)
/* utf8 character class swashes */
PERLVAR(I, utf8_alnum, SV *) /* Should really be named "utf8_wordchar" */
+PERLVAR(I, utf8_alnumc, SV *)
PERLVAR(I, utf8_alpha, SV *)
PERLVAR(I, utf8_graph, SV *)
PERLVAR(I, utf8_digit, SV *)