- Timestamp:
- 05/26/05 02:46:18 (4 years ago)
- svk:copy_cache_prev:
- 5482
- Files:
-
- 1 modified
-
src/perl5/perl5.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/perl5/perl5.c
r3887 r3891 171 171 perl5_eval(char *code, int cxt) 172 172 { 173 /* XXX - does not respect context yet */ 174 return (eval_pv(code, TRUE)); 173 dSP; 174 SV* sv = newSVpv(code, 0); 175 176 eval_sv(sv, cxt); 177 SvREFCNT_dec(sv); 178 179 SPAGAIN; 180 sv = POPs; 181 PUTBACK; 182 183 return sv; 175 184 } 176 185
