- Timestamp:
- 05/31/05 10:55:29 (4 years ago)
- svk:copy_cache_prev:
- 5793
- Location:
- src/perl5
- Files:
-
- 2 modified
-
perl5.c (modified) (1 diff)
-
pugsembed.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/perl5/perl5.c
r4184 r4199 250 250 out[i] = newSVsv(POPs); 251 251 } 252 out[count] = NULL; 252 253 253 254 PUTBACK; -
src/perl5/pugsembed.c
r3956 r4199 25 25 if (SvTRUE(pugs_Apply(pugs_PvToVal("&isa"), val, isa, G_SCALAR))) { 26 26 if (__init) { 27 SV **rv; 27 28 stack[0] = sv; 28 29 stack[1] = NULL; 29 /* fprintf (stderr, "isa code\n"); */30 sv = perl5_apply(newSVpv("code", 0), newSVpv("pugs::guts", 0), stack, NULL, G_SCALAR);30 rv = perl5_apply(newSVpv("code", 0), newSVpv("pugs::guts", 0), stack, NULL, G_SCALAR); 31 sv = rv[0]; 31 32 } 32 33 else {
