- Timestamp:
- Jun 3, 2010, 2:19:28 AM (13 years ago)
- Branches:
- master, release-1.7, release-1.8, release-1.9
- Children:
- cc36f27
- Parents:
- d6f2d21
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cmd.c
r0e98d87 r94be4a8 4 4 #include <unistd.h> 5 5 #include "owl.h" 6 #include "globalnotifier.h" 6 7 7 8 extern const owl_cmd commands_to_init[]; … … 73 74 } else if (NULL != (cmd = owl_dict_find_element(cd, argv[0]))) { 74 75 retval = owl_cmd_execute(cmd, cd, ctx, argc, argv, buff); 76 /* This really should be attached to the cmd or cmddict... */ 77 owl_global_notifier_emit_command_executed(g.gn); 75 78 } else { 76 79 owl_function_makemsg("Unknown command '%s'.", buff); … … 103 106 owl_parse_delete(argv, argc); 104 107 owl_free(tmpbuff); 105 sepbar_dirty();106 108 return retval; 107 109 }
Note: See TracChangeset
for help on using the changeset viewer.