- Timestamp:
- 05/28/05 14:54:11 (4 years ago)
- svk:copy_cache_prev:
- 5515
- Files:
-
- 1 modified
-
src/perl5/perl5.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/perl5/perl5.c
r4041 r4052 40 40 } 41 41 else { 42 char pugs_method[128],*method, *fullname;42 char *method, *fullname; 43 43 fullname = SvPV_nolen(sv); 44 44 method = strrchr(fullname, ':'); 45 45 method = method ? method+1 : fullname; 46 snprintf(pugs_method, 128, "&%s", method); 47 val = pugs_PvToVal(pugs_method); 46 val = pugs_PvToVal(method); 48 47 } 49 48 inv = SvOK(ST(1)) ? pugs_SvToVal(ST(1)) : NULL;
