summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2002-03-27 14:48:06 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2002-03-28 04:07:23 +0000
commiteac43e50eb74b2ab842edbaf11e066023abc47dc (patch)
tree8bce7b4a000768ee356e8d672aae4e0204d9db9f /regcomp.c
parentaf6f566ede304ed0d544d51e1e8e01bc3184a3f4 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.c b/regcomp.c
index c124d48405..14a245025d 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -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++, '}');