Change 17723 by [EMAIL PROTECTED] on 2002/08/17 00:10:24
Subject: Re: deb.c compile time error (patchlevel 17721)
From: Dave Mitchell <[EMAIL PROTECTED]>
Date: Tue, 13 Aug 2002 14:42:15 +0100
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
.... //depot/perl/embed.fnc#46 edit
.... //depot/perl/embed.h#363 edit
.... //depot/perl/global.sym#221 edit
.... //depot/perl/proto.h#404 edit
Differences ...
==== //depot/perl/embed.fnc#46 (text) ====
Index: perl/embed.fnc
--- perl/embed.fnc#45~17718~ Mon Aug 12 04:57:17 2002
+++ perl/embed.fnc Fri Aug 16 17:10:24 2002
@@ -1361,8 +1361,8 @@
p |void |deb_stack_all
#ifdef PERL_IN_DEB_C
-s |void |deb_stack_n |SV** stack_base, I32 stack_min, \
- I32 stack_max, I32 mark_min, I32 mark_max
+s |void |deb_stack_n |SV** stack_base|I32 stack_min \
+ |I32 stack_max|I32 mark_min|I32 mark_max
#endif
==== //depot/perl/embed.h#363 (text+w) ====
Index: perl/embed.h
--- perl/embed.h#362~17718~ Mon Aug 12 04:57:17 2002
+++ perl/embed.h Fri Aug 16 17:10:24 2002
@@ -2786,7 +2786,7 @@
#endif /* PERLIO_LAYERS */
#define deb_stack_all() Perl_deb_stack_all(aTHX)
#ifdef PERL_IN_DEB_C
-#define deb_stack_n(a) S_deb_stack_n(aTHX_ a)
+#define deb_stack_n(a,b,c,d,e) S_deb_stack_n(aTHX_ a,b,c,d,e)
#endif
#define ck_anoncode(a) Perl_ck_anoncode(aTHX_ a)
#define ck_bitop(a) Perl_ck_bitop(aTHX_ a)
==== //depot/perl/proto.h#404 (text+w) ====
Index: perl/proto.h
--- perl/proto.h#403~17718~ Mon Aug 12 04:57:17 2002
+++ perl/proto.h Fri Aug 16 17:10:24 2002
@@ -1390,7 +1390,7 @@
PERL_CALLCONV void Perl_deb_stack_all(pTHX);
#ifdef PERL_IN_DEB_C
-STATIC void S_deb_stack_n(pTHX_ SV** stack_base, I32 stack_min,
I32 stack_max, I32 mark_min, I32 mark_max);
+STATIC void S_deb_stack_n(pTHX_ SV** stack_base, I32 stack_min, I32 stack_max, I32
+mark_min, I32 mark_max);
#endif
End of Patch.