diff options
author | Ronald J. Kimball <rjk@linguist.dartmouth.edu> | 2001-05-16 09:04:43 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-16 18:00:00 +0000 |
commit | 7253e4e3a1f0c024bb2c5e2cff0df31194419994 (patch) | |
tree | 519fc997f2dc3515b979a8e2538ca3bb574c14de /regcomp.c | |
parent | 7feaa10c2dd3d47e3f70d856ee0a90782bd604fa (diff) | |
download | perl-7253e4e3a1f0c024bb2c5e2cff0df31194419994.tar.gz |
Re: [PATCH] HERE mark in regex
Message-ID: <20010516130443.E1516273@linguist.thayer.dartmouth.edu>
p4raw-id: //depot/perl@10136
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -250,10 +250,10 @@ static scan_data_t zero_scan_data = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, * of t/op/regmesg.t, the tests in t/op/re_tests, and those in * op/pragma/warn/regcomp. */ -#define MARKER1 "HERE" /* marker as it appears in the description */ -#define MARKER2 " << HERE " /* marker as it appears within the regex */ +#define MARKER1 "<-- HERE" /* marker as it appears in the description */ +#define MARKER2 " <-- HERE " /* marker as it appears within the regex */ -#define REPORT_LOCATION " before " MARKER1 " mark in regex m/%.*s" MARKER2 "%s/" +#define REPORT_LOCATION " in regex; marked by " MARKER1 " in m/%.*s" MARKER2 "%s/" /* * Calls SAVEDESTRUCTOR_X if needed, then calls Perl_croak with the given |