From 21c34e9717de1e37a5e25d2e7d748da66c781488 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Wed, 6 Mar 2019 17:50:23 -0700 Subject: Add hook for Unicode private use override I am starting to write a Unicode::Private_Use module which will allow one to specify the Unicode properties of private use code points, thus making them actually useful. This commit adds a hook to regcomp.c to accommodate this module. The changes are pretty minimal. This way we don't have to wait another release cycle to get it out there. I don't want to document this interface, until it's proven. --- warnings.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'warnings.h') diff --git a/warnings.h b/warnings.h index d076e7acc1..ba15ba94da 100644 --- a/warnings.h +++ b/warnings.h @@ -121,6 +121,10 @@ #define WARN_EXPERIMENTAL__SCRIPT_RUN 68 #define WARN_SHADOW 69 +/* Warnings Categories added in Perl 5.029 */ + +#define WARN_EXPERIMENTAL__PRIVATE_USE 70 + #define WARNsize 18 #define WARN_ALLstring "\125\125\125\125\125\125\125\125\125\125\125\125\125\125\125\125\125\125" #define WARN_NONEstring "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" -- cgit v1.2.1