Changeset 497 for abuse/trunk/src/clisp.cpp
- Timestamp:
- Apr 17, 2011, 11:56:59 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/clisp.cpp
r496 r497 582 582 exit(0); 583 583 } 584 return eval_function((LSymbol *)ai,NULL);584 return ((LSymbol *)ai)->EvalFunction(NULL); 585 585 } break; 586 586 case 1 : … … 710 710 void *f=figures[current_object->otype]->get_fun(OFUN_USER_FUN); 711 711 if (!f) return NULL; 712 return eval_function((LSymbol *)f,args);712 return ((LSymbol *)f)->EvalFunction(args); 713 713 } break; 714 714 case 17 : … … 2265 2265 current_object=v->focus; 2266 2266 2267 eval_function((LSymbol *)l_restart_player,NULL);2267 ((LSymbol *)l_restart_player)->EvalFunction(NULL); 2268 2268 v->reset_player(); 2269 2269 v->focus->set_aistate(0);
Note: See TracChangeset
for help on using the changeset viewer.