- Timestamp:
- 05/27/05 04:31:40 (4 years ago)
- svk:copy_cache_prev:
- 5515
- Location:
- src/perl5
- Files:
-
- 3 modified
-
perl5.c (modified) (1 diff)
-
pugsembed.c (modified) (1 diff)
-
pugsembed.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/perl5/perl5.c
r3955 r3956 52 52 stack[i-2] = NULL; 53 53 54 ST(0) = pugs_Apply(val, inv, stack );54 ST(0) = pugs_Apply(val, inv, stack, GIMME_V); 55 55 sv_dump (ret); 56 56 free (stack); -
src/perl5/pugsembed.c
r3948 r3956 23 23 isa[0] = pugs_PvToVal("Code"); 24 24 isa[1] = NULL; 25 if (SvTRUE(pugs_Apply(pugs_PvToVal("&isa"), val, isa ))) {25 if (SvTRUE(pugs_Apply(pugs_PvToVal("&isa"), val, isa, G_SCALAR))) { 26 26 if (__init) { 27 27 stack[0] = sv; -
src/perl5/pugsembed.h
r3948 r3956 8 8 9 9 extern Val *pugs_Eval ( char *code ); 10 extern SV *pugs_Apply ( Val *sub, Val *inv, Val **args );10 extern SV *pugs_Apply ( Val *sub, Val *inv, Val **args, int cxt ); 11 11 12 12 extern Val *pugs_IvToVal ( IV iv );
