aboutsummaryrefslogtreecommitdiff
path: root/format.c
diff options
context:
space:
mode:
Diffstat (limited to 'format.c')
-rw-r--r--format.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/format.c b/format.c
index d263cb0c..e62738d5 100644
--- a/format.c
+++ b/format.c
@@ -485,6 +485,7 @@ struct format_tree *
format_create(struct cmd_q *cmdq, int flags)
{
struct format_tree *ft;
+ struct cmd *cmd;
if (!event_initialized(&format_job_event)) {
evtimer_set(&format_job_event, format_job_timer, NULL);
@@ -503,6 +504,10 @@ format_create(struct cmd_q *cmdq, int flags)
if (cmdq != NULL && cmdq->cmd != NULL)
format_add(ft, "command_name", "%s", cmdq->cmd->entry->name);
+ if (cmdq != NULL && cmdq->parent != NULL) {
+ cmd = cmdq->parent->cmd;
+ format_add(ft, "command_hooked", "%s", cmd->entry->name);
+ }
return (ft);
}