[padb-devel] [padb] r279 committed - Nested quantifiers in regex, apparantly older perl versions don't like...

codesite-noreply at google.com codesite-noreply at google.com
Wed Oct 7 21:00:25 BST 2009


Revision: 279
Author: apittman
Date: Wed Oct  7 12:59:15 2009
Log: Nested quantifiers in regex, apparantly older perl versions don't like  
them.

http://code.google.com/p/padb/source/detail?r=279

Modified:
  /trunk/src/padb

=======================================
--- /trunk/src/padb	Wed Oct  7 10:56:40 2009
+++ /trunk/src/padb	Wed Oct  7 12:59:15 2009
@@ -5036,7 +5036,7 @@
      if (
          $str =~ m{\A                    # Start of str.
                     "                    # Quote
-                   ((?:[^"\\]++|\\.)*+) # Anyting which isn't \"
+                   ((?:[^"\\]+|\\.)*)   # Anyting which isn't \"
                     "                    # Close quote
                     ,?                   # An optional comma.
                     (.*)                 # Rest of line




More information about the padb-devel mailing list