diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-02-01 17:17:14 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-02-02 16:31:22 -0700 |
commit | 1bd9dc9102c3f4c19980ec24a2e7a20f03921636 (patch) | |
tree | a1d987d1c1361e73d22c1def09e384714424befc /embedvar.h | |
parent | 11e4b509a05a8d9a4df1a66eb2910eb15ae36efd (diff) | |
download | perl-1bd9dc9102c3f4c19980ec24a2e7a20f03921636.tar.gz |
Add PL_foldable - a list of chars that participate in folds
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/embedvar.h b/embedvar.h index 84e0c1e3a7..7b78a5ebdd 100644 --- a/embedvar.h +++ b/embedvar.h @@ -342,6 +342,7 @@ #define PL_utf8_ascii (vTHX->Iutf8_ascii) #define PL_utf8_cntrl (vTHX->Iutf8_cntrl) #define PL_utf8_digit (vTHX->Iutf8_digit) +#define PL_utf8_foldable (vTHX->Iutf8_foldable) #define PL_utf8_foldclosures (vTHX->Iutf8_foldclosures) #define PL_utf8_graph (vTHX->Iutf8_graph) #define PL_utf8_idcont (vTHX->Iutf8_idcont) @@ -673,6 +674,7 @@ #define PL_Iutf8_ascii PL_utf8_ascii #define PL_Iutf8_cntrl PL_utf8_cntrl #define PL_Iutf8_digit PL_utf8_digit +#define PL_Iutf8_foldable PL_utf8_foldable #define PL_Iutf8_foldclosures PL_utf8_foldclosures #define PL_Iutf8_graph PL_utf8_graph #define PL_Iutf8_idcont PL_utf8_idcont |