diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-12-28 16:16:49 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-01-16 19:13:23 -0700 |
commit | da494bb71ff537bc6276eff25cbb6b674e3d6656 (patch) | |
tree | 7404ad41e748a2e0d7dda382a3bb8b60e61816e8 /op_reg_common.h | |
parent | b988e673a1322982f92dcce5bc82b973c29216ed (diff) | |
download | perl-da494bb71ff537bc6276eff25cbb6b674e3d6656.tar.gz |
op_reg_common: correct path in comment
Diffstat (limited to 'op_reg_common.h')
-rw-r--r-- | op_reg_common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/op_reg_common.h b/op_reg_common.h index c6d846dd69..c8a35184a6 100644 --- a/op_reg_common.h +++ b/op_reg_common.h @@ -18,7 +18,7 @@ /* This tells where the first of these bits is. Setting it to 0 saved cycles * and memory. I (khw) think the code will work if changed back, but haven't * tested it */ -/* Make sure to update lib/re.pm when changing this! */ +/* Make sure to update ext/re/re.pm when changing this! */ #ifndef RXf_PMf_STD_PMMOD_SHIFT /* Only expand #include of this file once */ #define RXf_PMf_STD_PMMOD_SHIFT 0 @@ -36,6 +36,7 @@ /* The character set for the regex is stored in a field of more than one bit * using an enum, for reasons of compactness and to ensure that the options are * mutually exclusive */ +/* Make sure to update ext/re/re.pm when changing this! */ typedef enum { REGEX_DEPENDS_CHARSET = 0, REGEX_LOCALE_CHARSET, |