regcomp.sym: add clarifying comments
authorKarl Williamson <public@khwilliamson.com>
Sun, 26 Dec 2010 17:40:29 +0000 (10:40 -0700)
committerKarl Williamson <public@khwilliamson.com>
Mon, 17 Jan 2011 02:13:23 +0000 (19:13 -0700)
regcomp.sym
regnodes.h

index 3c9f97c..f8a959c 100644 (file)
@@ -31,9 +31,9 @@ EOL         EOL,        no        ; Match "" at end of line.
 MEOL        EOL,        no        ; Same, assuming multiline.
 SEOL        EOL,        no        ; Same, assuming singleline.
 BOUND       BOUND,      no        ; Match "" at any word boundary
-BOUNDL      BOUND,      no        ; Match "" at any word boundary
+BOUNDL      BOUND,      no        ; Match "" at any locale word boundary
 NBOUND      NBOUND,     no        ; Match "" at any word non-boundary
-NBOUNDL     NBOUND,     no        ; Match "" at any word non-boundary
+NBOUNDL     NBOUND,     no        ; Match "" at any locale word non-boundary
 GPOS        GPOS,       no        ; Matches where last m//g left off.
 
 #* [Special] alternatives:
index f0725ba..a8f034e 100644 (file)
@@ -19,9 +19,9 @@
 #define        MEOL                    7       /* 0x07 Same, assuming multiline. */
 #define        SEOL                    8       /* 0x08 Same, assuming singleline. */
 #define        BOUND                   9       /* 0x09 Match "" at any word boundary */
-#define        BOUNDL                  10      /* 0x0a Match "" at any word boundary */
+#define        BOUNDL                  10      /* 0x0a Match "" at any locale word boundary */
 #define        NBOUND                  11      /* 0x0b Match "" at any word non-boundary */
-#define        NBOUNDL                 12      /* 0x0c Match "" at any word non-boundary */
+#define        NBOUNDL                 12      /* 0x0c Match "" at any locale word non-boundary */
 #define        GPOS                    13      /* 0x0d Matches where last m//g left off. */
 #define        REG_ANY                 14      /* 0x0e Match any one character (except newline). */
 #define        SANY                    15      /* 0x0f Match any one character. */