]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
Refine indirect_find
authorVincent Pit <vince@profvince.com>
Mon, 23 Aug 2010 09:53:50 +0000 (11:53 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 23 Aug 2010 09:53:50 +0000 (11:53 +0200)
indirect.xs

index f22ecb315e9d3101b7363b0592985ca4e41f6501..9a2b6c06ca9d3305d0c579b29f4e1315ab2d62f5 100644 (file)
@@ -450,7 +450,7 @@ STATIC void indirect_map_delete(pTHX_ const OP *o) {
 STATIC int indirect_find(pTHX_ SV *sv, const char *s, STRLEN *pos) {
 #define indirect_find(N, S, P) indirect_find(aTHX_ (N), (S), (P))
  STRLEN len;
- const char *p = NULL, *r = SvPV_const(sv, len);
+ const char *p, *r = SvPV_const(sv, len);
 
  if (len >= 1 && *r == '$') {
   ++r;
@@ -460,15 +460,18 @@ STATIC int indirect_find(pTHX_ SV *sv, const char *s, STRLEN *pos) {
    return 0;
  }
 
- p = strstr(s, r);
- while (p) {
-  p += len;
-  if (!isALNUM(*p))
+ p = s;
+ while (1) {
+  p = strstr(p, r);
+  if (!p)
+   return 0;
+  if (!isALNUM(p[len]))
    break;
-  p = strstr(p + 1, r);
+  /* p points to a word that has r as prefix, skip the rest of the word */
+  p += len + 1;
+  while (isALNUM(*p))
+   ++p;
  }
- if (!p)
-  return 0;
 
  *pos = p - SvPVX_const(PL_linestr);