diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-11-15 10:15:43 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-11-15 10:15:43 +0000 |
commit | 59cfed7d3d8869650cb695575c07168f937381f0 (patch) | |
tree | 5d4b141b225c4b784d67a5f9e57757f9ee350eca /pad.h | |
parent | 2d12d04f1cca69e8010b11cf63b89ce3b00490b9 (diff) | |
download | perl-59cfed7d3d8869650cb695575c07168f937381f0.tar.gz |
Make the style of pad_add_name's flags consistent with pad_new's and pad_tidy's.
Diffstat (limited to 'pad.h')
-rw-r--r-- | pad.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -116,9 +116,9 @@ typedef enum { /* flags for pad_add_name. SVf_UTF8 will also be valid in the future. */ -# define pad_add_OUR 0x01 /* our declaration. */ -# define pad_add_STATE 0x02 /* state declaration. */ -# define pad_add_NO_DUP_CHECK 0x04 /* skip warning on dups. */ +# define padadd_OUR 0x01 /* our declaration. */ +# define padadd_STATE 0x02 /* state declaration. */ +# define padadd_NO_DUP_CHECK 0x04 /* skip warning on dups. */ #endif |