summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-02-09 10:37:17 -0700
committerKarl Williamson <public@khwilliamson.com>2011-02-14 08:41:37 -0700
commit7e2509c1602d8aa746e63f571f9b46e8b2dca105 (patch)
treef07233dd567b8fccbe234afaf42b4fc00208ad0a /regexec.c
parentb1e3e569b09fd7f24fa3e311cdf8e3d3d8ca931a (diff)
downloadperl-7e2509c1602d8aa746e63f571f9b46e8b2dca105.tar.gz
regex: Add comments
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/regexec.c b/regexec.c
index 58fc358ab8..0864a45cf4 100644
--- a/regexec.c
+++ b/regexec.c
@@ -94,9 +94,9 @@
#define STATIC static
#endif
-/* Valid for non-utf8 strings only: avoids the reginclass call if there are no
- * complications: i.e., if everything matchable is straight forward in the
- * bitmap */
+/* Valid for non-utf8 strings, non-ANYOFV nodes only: avoids the reginclass
+ * call if there are no complications: i.e., if everything matchable is
+ * straight forward in the bitmap */
#define REGINCLASS(prog,p,c) (ANYOF_FLAGS(p) ? reginclass(prog,p,c,0,0) \
: ANYOF_BITMAP_TEST(p,*(c)))