summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorHugo van der Sanden <hv@crypt.org>2000-10-30 01:33:26 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-01-11 04:38:24 +0000
commit2e36c9299e5be15e144ba340dadeda60948efca7 (patch)
tree5c74aadb60c29e5e8a1589cdf5e333416102a73f /regexec.c
parentb8a8b28157b126326ef2c02ac702e02497e7d1b2 (diff)
downloadperl-2e36c9299e5be15e144ba340dadeda60948efca7.tar.gz
Re: [ID 20001029.005] Regex error: "cd. (A. Tw)" !~ /\((\w\. \w+)\)/
Message-Id: <200010300133.BAA10390@crypt.compulink.co.uk> p4raw-id: //depot/perl@8403
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexec.c b/regexec.c
index 5990ea3ca4..c7d42cda4e 100644
--- a/regexec.c
+++ b/regexec.c
@@ -597,7 +597,7 @@ Perl_re_intuit_start(pTHX_ regexp *prog, SV *sv, char *strpos,
DEBUG_r(PerlIO_printf(Perl_debug_log,
", trying anchored starting at offset %ld...\n",
(long)(s1 + 1 - i_strpos)));
- other_last = last + 1;
+ other_last = last; /* Fix this later. --Hugo */
s = HOP3c(t, 1, strend);
goto restart;
}