Changeset c809f5e
- Timestamp:
- Mar 24, 2011, 4:06:10 PM (14 years ago)
- Branches:
- master, release-1.10, release-1.8, release-1.9
- Children:
- b13daa0
- Parents:
- f25df21
- git-author:
- David Benjamin <davidben@mit.edu> (03/08/11 15:16:37)
- git-committer:
- David Benjamin <davidben@mit.edu> (03/24/11 16:06:10)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
r010a951 rc809f5e 1215 1215 ptr = skiptokens(buff, 1); 1216 1216 1217 owl_function_command (ptr);1217 owl_function_command_norv(ptr); 1218 1218 owl_function_addstartup(ptr); 1219 1219 -
functions.c
rf25df21 rc809f5e 2682 2682 g_string_append(buf, " *"); 2683 2683 } 2684 owl_function_command (buf->str);2684 owl_function_command_norv(buf->str); 2685 2685 g_string_free(buf, true); 2686 2686 } … … 3310 3310 if (s[0] == '\0' || s[0] == '#') 3311 3311 continue; 3312 owl_function_command (s);3312 owl_function_command_norv(s); 3313 3313 } 3314 3314 -
owl.c
r3472845 rc809f5e 226 226 f=owl_global_get_filter(&g, owl_global_get_alert_filter(&g)); 227 227 if (f && owl_filter_message_match(f, m)) { 228 owl_function_command (owl_global_get_alert_action(&g));228 owl_function_command_norv(owl_global_get_alert_action(&g)); 229 229 } 230 230
Note: See TracChangeset
for help on using the changeset viewer.