Changeset 0337203 for perlconfig.c
- Timestamp:
- Mar 16, 2007, 12:45:19 AM (18 years ago)
- Branches:
- master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 4dd6e58
- Parents:
- 69d66aa7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
perlconfig.c
r1cc95709 r0337203 422 422 } else { 423 423 char *ptr = NULL; 424 if (owl_perlconfig_is_function("BarnOwl::Hooks:: receive_msg")) {424 if (owl_perlconfig_is_function("BarnOwl::Hooks::_receive_msg")) { 425 425 ptr = owl_perlconfig_call_with_message(subname?subname 426 426 :"BarnOwl::_receive_msg_legacy_wrap", m); … … 506 506 void owl_perlconfig_mainloop() 507 507 { 508 if (!owl_perlconfig_is_function("BarnOwl::Hooks:: mainloop_hook"))508 if (!owl_perlconfig_is_function("BarnOwl::Hooks::_mainloop_hook")) 509 509 return; 510 510 dSP ; 511 511 PUSHMARK(SP) ; 512 call_pv("BarnOwl::Hooks:: mainloop_hook", G_DISCARD|G_EVAL);512 call_pv("BarnOwl::Hooks::_mainloop_hook", G_DISCARD|G_EVAL); 513 513 if(SvTRUE(ERRSV)) { 514 514 STRLEN n_a;
Note: See TracChangeset
for help on using the changeset viewer.