diff options
author | Lupe Christoph <lupe@lupe-christoph.de> | 2000-08-11 02:30:27 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-16 14:08:17 +0000 |
commit | 5aa4340e488ca15127d8181ea8476af4d9a9a491 (patch) | |
tree | 10ec735b2fa1d86437d32f3c411dff62e195e3b6 /regcomp.c | |
parent | 8db473c3211cfc69909ae5784a7149bea2f839a3 (diff) | |
download | perl-5aa4340e488ca15127d8181ea8476af4d9a9a491.tar.gz |
Change the regx compilation error markers to use = instead of <
since pod makes using the latter quite messy. Reported in
ID 20000814.006 by Abigail and in
Subject: Unknown escape E<> ?
Message-ID: <20000811003027.F17420@alanya.lupe-christoph.de>
p4raw-id: //depot/perl@6653
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -210,8 +210,8 @@ 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 " at " MARKER1 " mark in regex m/%.*s" MARKER2 "%s/" |