summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2014-10-08 11:16:59 -0600
committerKarl Williamson <khw@cpan.org>2014-10-21 09:26:49 -0600
commit6838b41e3cd58738e5e73705c9cef5bef6e28885 (patch)
tree2746a50eedba46c0558f452c23b45744fbe97311 /handy.h
parent687c8d01ec65dc1466743a4045ad091451aedc41 (diff)
downloadperl-6838b41e3cd58738e5e73705c9cef5bef6e28885.tar.gz
handy.h: Need macro definition for normally non-compiled code
This section of code is compiled only when perl.h is not available, i.e. for utility programs. I periodically test that it still works, and this time a macro was added to the other branch of the #if, but not this one. This commit adds a trivial one to the missing area.
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/handy.h b/handy.h
index 3e6ccad92a..352e458d6a 100644
--- a/handy.h
+++ b/handy.h
@@ -1191,6 +1191,7 @@ EXTCONST U32 PL_charclass[];
/* And these aren't accurate at all. They are useful only for above
* Latin1, which utilities and bootstrapping don't deal with */
# define _IS_NON_FINAL_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) 0
+# define _HAS_NONLATIN1_SIMPLE_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) 0
# define _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) 0
/* Many of the macros later in this file are defined in terms of these. By