6 ENTER;
7 call_method("PUSH", G_SCALAR|G_DISCARD);
8 LEAVE;
- 9 (void)POPMARK;
The lines which concern the mark stack are the first, fifth and last
lines: they save away, restore and remove the current position of the
L<perlcall>. We call the C<PUSH> method in scalar context, and we're
going to discard its return value.
- 9 (void)POPMARK;
-
-Finally, we remove the value we placed on the mark stack, since we
-don't need it any more.
-
=item Save stack
C doesn't have a concept of local scope, so perl provides one. We've