summaryrefslogtreecommitdiff
path: root/src/hook.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2006-04-18 04:55:59 +0000
committersabetts <sabetts>2006-04-18 04:55:59 +0000
commit91a86a505d76d9a4a0b89ddaaefa631a660c4835 (patch)
tree4a81aa287cc53e7f4c68f3d4c3bb0578d5a4ef6d /src/hook.c
parent40cbc1c33106eb9f432ecaf424a0f4264ee21c19 (diff)
downloadratpoison-91a86a505d76d9a4a0b89ddaaefa631a660c4835.zip
(hook_run): echo the result of each command. free the
result.
Diffstat (limited to 'src/hook.c')
-rw-r--r--src/hook.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/hook.c b/src/hook.c
index 1b2b643..3ff4751 100644
--- a/src/hook.c
+++ b/src/hook.c
@@ -62,10 +62,17 @@ void
hook_run (struct list_head *hook)
{
struct sbuf *cur;
+ cmdret *result;
list_for_each_entry (cur, hook, node)
{
- command (1, sbuf_get (cur));
+ result = command (1, sbuf_get (cur));
+ if (result)
+ {
+ if (result->output)
+ message (result->output);
+ cmdret_free (result);
+ }
}
}