This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Also skip spaces after variable if we are within lexical brackets. Fixes #70091:...
[perl5.git] / pad.h
diff --git a/pad.h b/pad.h
index 7d05edc..986f7c2 100644 (file)
--- a/pad.h
+++ b/pad.h
@@ -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