Fix showstopping bug (^ wouldn't match after \n).  Jeffrey Ollie.
diff --git a/Modules/regexpr.c b/Modules/regexpr.c
index 90bff87..87f747f 100644
--- a/Modules/regexpr.c
+++ b/Modules/regexpr.c
@@ -1914,7 +1914,7 @@
      }
      if (anchor == 1)
      { /* anchored to begline */
-	if (pos > 0 && string[pos - 1])
+	if (pos > 0 && (string[pos - 1] != '\n'))
 	   continue;
      }
      assert(pos >= 0 && pos <= size);