caused a wrong initial search offset for that substring.
Subject: [PATCH 5.6.0] Re: [ID
20000613.001] Regex works in v5.005_03 but fails in v5.06
Message-Id: <
200007131827.TAA14487@crypt.compulink.co.uk>
p4raw-id: //depot/cfgperl@6392
sv_catsv(data->last_found, last_str);
data->last_end += l * (mincount - 1);
}
+ } else {
+ /* start offset must point into the last copy */
+ data->last_start_min += minnext * (mincount - 1);
}
}
/* It is counted once already... */
'^\S\s+aa$'m \nx aa y - -
(^|a)b ab y - -
^([ab]*?)(b)?(c)$ abac y -$2- --
+^(?:.,){2}c a,b,c y - -
+^(.,){2}c a,b,c y $1 b,
+^(?:[^,]*,){2}c a,b,c y - -
+^([^,]*,){2}c a,b,c y $1 b,
(?i) y - -
'(?!\A)x'm a\nxb\n y - -