diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-12-02 21:01:12 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-12-09 10:30:00 -0700 |
commit | 5092f92a753474f7a1ed5525e874cb0904427ae5 (patch) | |
tree | c13eca25ad226086c186e29d1ab78b75f4d79edc /sv.c | |
parent | e712593e71e0d665d0aed1b3e126cda71bb5eda1 (diff) | |
download | perl-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 'sv.c')
-rw-r--r-- | sv.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -13639,6 +13639,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, /* utf8 character class swashes */ PL_utf8_alnum = sv_dup_inc(proto_perl->Iutf8_alnum, param); + PL_utf8_alnumc = sv_dup_inc(proto_perl->Iutf8_alnumc, param); PL_utf8_alpha = sv_dup_inc(proto_perl->Iutf8_alpha, param); PL_utf8_graph = sv_dup_inc(proto_perl->Iutf8_graph, param); PL_utf8_digit = sv_dup_inc(proto_perl->Iutf8_digit, param); |