Changeset c0a90c2
- Timestamp:
- Oct 24, 2006, 12:44:58 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:
- 1152d45
- Parents:
- 54666e0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
r5e0b690 rc0a90c2 1556 1556 char *owl_command_multi(int argc, char **argv, char *buff) 1557 1557 { 1558 char *lastrv = NULL, * newbuff;1558 char *lastrv = NULL, *dupbuff, *newbuff; 1559 1559 char **commands; 1560 1560 int ncommands, i; … … 1563 1563 return NULL; 1564 1564 } 1565 newbuff = owl_strdup(buff);1566 newbuff = skiptokens( newbuff, 1);1565 dupbuff = owl_strdup(buff); 1566 newbuff = skiptokens(dupbuff, 1); 1567 1567 if (!strcmp(argv[0], "(")) { 1568 1568 for (i=strlen(newbuff)-1; i>=0; i--) { … … 1584 1584 lastrv = owl_function_command(commands[i]); 1585 1585 } 1586 owl_free(dupbuff); 1586 1587 atokenize_free(commands, ncommands); 1587 1588 return lastrv; … … 1976 1977 foo=owl_function_create_negative_filter(owl_view_get_filtname(owl_global_get_current_view(&g))); 1977 1978 owl_function_change_currentview_filter(foo); 1979 owl_free(foo); 1978 1980 return(NULL); 1979 1981 } -
functions.c
r3c7d086a rc0a90c2 3270 3270 owl_fmtext_append_normal(&fm, line); 3271 3271 owl_free(tmp); 3272 owl_free(line); 3272 3273 } 3273 3274 if (numlocs>=200) { -
perlconfig.c
r4e0f545 rc0a90c2 325 325 char *ptr = NULL; 326 326 if (owl_perlconfig_is_function("owl::receive_msg")) { 327 owl_perlconfig_call_with_message(subname?subname327 ptr = owl_perlconfig_call_with_message(subname?subname 328 328 :"owl::_receive_msg_legacy_wrap", m); 329 329 }
Note: See TracChangeset
for help on using the changeset viewer.