summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2014-06-30 15:03:14 -0600
committerKarl Williamson <khw@cpan.org>2014-08-21 14:49:46 -0600
commitdcb20b364cef1eec53dfee5ed1078aa04ef59ed8 (patch)
tree249151f4f1bb1d26d614e81d71152b21b6c96d9a /embed.h
parentda0334e84bccb9964f9752cf3ad04aa2ccff66b3 (diff)
downloadperl-dcb20b364cef1eec53dfee5ed1078aa04ef59ed8.tar.gz
regex: Use #define for number of bits in ANYOF
ANYOF nodes (for bracketed character classes) currently are for code points 0-255. This is the first step in the eventual making that size configurable. This also renames a static function, as the domain may not necessarily be 'latin1'
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index be519f205f..4b94b89f27 100644
--- a/embed.h
+++ b/embed.h
@@ -917,7 +917,7 @@
#define dump_trie_interim_table(a,b,c,d,e) S_dump_trie_interim_table(aTHX_ a,b,c,d,e)
#define dumpuntil(a,b,c,d,e,f,g,h) S_dumpuntil(aTHX_ a,b,c,d,e,f,g,h)
#define put_byte(a,b) S_put_byte(aTHX_ a,b)
-#define put_latin1_charclass_innards(a,b) S_put_latin1_charclass_innards(aTHX_ a,b)
+#define put_charclass_bitmap_innards(a,b) S_put_charclass_bitmap_innards(aTHX_ a,b)
#define put_range(a,b,c) S_put_range(aTHX_ a,b,c)
#define regdump_extflags(a,b) S_regdump_extflags(aTHX_ a,b)
#define regdump_intflags(a,b) S_regdump_intflags(aTHX_ a,b)