summaryrefslogtreecommitdiff
path: root/regnodes.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2010-12-26 10:40:29 -0700
committerKarl Williamson <public@khwilliamson.com>2011-01-16 19:13:23 -0700
commitf2284805aa37a2c7b924bbf556519bdcb3870fd2 (patch)
tree48cb3e872ec162d3d00a05c7da04345db3926cb4 /regnodes.h
parentda494bb71ff537bc6276eff25cbb6b674e3d6656 (diff)
downloadperl-f2284805aa37a2c7b924bbf556519bdcb3870fd2.tar.gz
regcomp.sym: add clarifying comments
Diffstat (limited to 'regnodes.h')
-rw-r--r--regnodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/regnodes.h b/regnodes.h
index f0725ba525..a8f034ec57 100644
--- a/regnodes.h
+++ b/regnodes.h
@@ -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. */