diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-20 13:59:58 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-20 13:59:58 +0000 |
commit | 33b8afdf5cd7f66238db46e095c6effe7bebe9ee (patch) | |
tree | 4708cd5f7fcc68c5cc6584c05a825f6c168c901e /proto.h | |
parent | 6d5328bc15982a12e4db34e42922fa0ff551ed7c (diff) | |
download | perl-33b8afdf5cd7f66238db46e095c6effe7bebe9ee.tar.gz |
Fix for "UTF-8 bug with s///" from Hugo.
p4raw-id: //depot/perl@15356
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1206,6 +1206,8 @@ STATIC U8* S_reghop3(pTHX_ U8 *pos, I32 off, U8 *lim); STATIC U8* S_reghopmaybe(pTHX_ U8 *pos, I32 off); STATIC U8* S_reghopmaybe3(pTHX_ U8 *pos, I32 off, U8 *lim); STATIC char* S_find_byclass(pTHX_ regexp * prog, regnode *c, char *s, char *strend, char *startpos, I32 norun); +STATIC void S_to_utf8_substr(pTHX_ regexp * prog); +STATIC void S_to_byte_substr(pTHX_ regexp * prog); #endif #if defined(PERL_IN_DUMP_C) || defined(PERL_DECL_PROT) |