fix Liblist.pm to find entries that are plain pathnames on win32
[p5sagit/p5-mst-13.2.git] / regexec.c
index 2c10383..47ece6a 100644 (file)
--- a/regexec.c
+++ b/regexec.c
@@ -820,7 +820,7 @@ regmatch(regnode *prog)
                : (PL_multiline && 
                   (nextchr || locinput < PL_regeol) && locinput[-1] == '\n') )
            {
-               /* regtill = regbol; */
+               /* PL_regtill = PL_regbol; */
                break;
            }
            sayNO;
@@ -1188,8 +1188,9 @@ regmatch(regnode *prog)
                        if (PL_dowarn && n >= REG_INFTY 
                            && !(PL_reg_flags & RF_warned)) {
                            PL_reg_flags |= RF_warned;
-                           warn("Complex regular subexpression recursion "
-                                "limit (%d) exceeded", REG_INFTY - 1);
+                           warn("%s limit (%d) exceeded",
+                                "Complex regular subexpression recursion",
+                                REG_INFTY - 1);
                        }
                        sayNO;
                    }