diff options
author | Yves Orton <demerphq@gmail.com> | 2009-10-17 22:47:20 +0200 |
---|---|---|
committer | Yves Orton <demerphq@gmail.com> | 2009-10-19 22:56:47 +0200 |
commit | d1eb31775715b0fcd7f36308da961c0698205d9f (patch) | |
tree | c8850c8fe42d0523b4cd910fe55691a6e088c1c6 /embedvar.h | |
parent | 3b665c4736519efd7820e8513b3bcd40fd968e45 (diff) | |
download | perl-d1eb31775715b0fcd7f36308da961c0698205d9f.tar.gz |
somewhat fix failing regex tests. but break lots of other stuff at the same time
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/embedvar.h b/embedvar.h index 2a9866fee7..9d6d4c314b 100644 --- a/embedvar.h +++ b/embedvar.h @@ -333,6 +333,9 @@ #define PL_utf8_idstart (vTHX->Iutf8_idstart) #define PL_utf8_lower (vTHX->Iutf8_lower) #define PL_utf8_mark (vTHX->Iutf8_mark) +#define PL_utf8_perl_space (vTHX->Iutf8_perl_space) +#define PL_utf8_perl_word (vTHX->Iutf8_perl_word) +#define PL_utf8_posix_digit (vTHX->Iutf8_posix_digit) #define PL_utf8_print (vTHX->Iutf8_print) #define PL_utf8_punct (vTHX->Iutf8_punct) #define PL_utf8_space (vTHX->Iutf8_space) @@ -646,6 +649,9 @@ #define PL_Iutf8_idstart PL_utf8_idstart #define PL_Iutf8_lower PL_utf8_lower #define PL_Iutf8_mark PL_utf8_mark +#define PL_Iutf8_perl_space PL_utf8_perl_space +#define PL_Iutf8_perl_word PL_utf8_perl_word +#define PL_Iutf8_posix_digit PL_utf8_posix_digit #define PL_Iutf8_print PL_utf8_print #define PL_Iutf8_punct PL_utf8_punct #define PL_Iutf8_space PL_utf8_space |