summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-01-10 15:03:39 -0700
committerKarl Williamson <public@khwilliamson.com>2013-01-11 11:50:37 -0700
commit8316ead628e0766f9c676352d8fa10eddbede091 (patch)
tree9e8b2a4aa9174db9220153dd334d83af92c56a19 /embed.h
parent95db3ffad52173bfbe00b362573cc33a6d4c6677 (diff)
downloadperl-8316ead628e0766f9c676352d8fa10eddbede091.tar.gz
regcomp.c: Add parameter to regclass()
This parameter allows the caller to specify whether multi-character folds should be allowed or not. In general it should, and in the case where this commit says it shouldn't, they never are returned anyway from Unicode properties. This capability will be put to real use by future commits
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index 86d9006fc1..3f4034e47e 100644
--- a/embed.h
+++ b/embed.h
@@ -935,7 +935,7 @@
#define reganode(a,b,c) S_reganode(aTHX_ a,b,c)
#define regatom(a,b,c) S_regatom(aTHX_ a,b,c)
#define regbranch(a,b,c,d) S_regbranch(aTHX_ a,b,c,d)
-#define regclass(a,b,c,d) S_regclass(aTHX_ a,b,c,d)
+#define regclass(a,b,c,d,e) S_regclass(aTHX_ a,b,c,d,e)
#define reginsert(a,b,c,d) S_reginsert(aTHX_ a,b,c,d)
#define regpiece(a,b,c) S_regpiece(aTHX_ a,b,c)
#define regpposixcc(a,b,c) S_regpposixcc(aTHX_ a,b,c)