diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-03-27 14:48:06 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-28 04:07:23 +0000 |
commit | eac43e50eb74b2ab842edbaf11e066023abc47dc (patch) | |
tree | 8bce7b4a000768ee356e8d672aae4e0204d9db9f /regcomp.c | |
parent | af6f566ede304ed0d544d51e1e8e01bc3184a3f4 (diff) | |
download | perl-eac43e50eb74b2ab842edbaf11e066023abc47dc.tar.gz |
Re: Regex-Unicode bugs
Message-ID: <20020327134806.C18945@rafael>
regmesg.t patch still would be nice.
p4raw-id: //depot/perl@15574
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3597,7 +3597,7 @@ S_regclass(pTHX_ RExC_state_t *pRExC_state) case 'p': case 'P': if (RExC_parse >= RExC_end) - vFAIL("Empty \\p{}"); + vFAIL2("Empty \\%c{}", value); if (*RExC_parse == '{') { U8 c = (U8)value; e = strchr(RExC_parse++, '}'); |