diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-08-21 10:22:40 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-08-21 10:22:40 +0000 |
commit | 00c82e46454adf0fbd43f781f11fcddddd6ae2b4 (patch) | |
tree | cc69ce8a253190400582635fab6b59bb36fe1708 /usr.bin/tmux/cmd-show-prompt-history.c | |
parent | 74ec25b81c3a3e829dff01a606be13a1a2e1daf0 (diff) |
Add args parsing callback for some future work, currently unused.
Diffstat (limited to 'usr.bin/tmux/cmd-show-prompt-history.c')
-rw-r--r-- | usr.bin/tmux/cmd-show-prompt-history.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd-show-prompt-history.c b/usr.bin/tmux/cmd-show-prompt-history.c index b4b191b8ede..b5e369c6233 100644 --- a/usr.bin/tmux/cmd-show-prompt-history.c +++ b/usr.bin/tmux/cmd-show-prompt-history.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-show-prompt-history.c,v 1.1 2021/06/10 07:50:03 nicm Exp $ */ +/* $OpenBSD: cmd-show-prompt-history.c,v 1.2 2021/08/21 10:22:39 nicm Exp $ */ /* * Copyright (c) 2021 Anindya Mukherjee <anindya49@hotmail.com> @@ -31,7 +31,7 @@ const struct cmd_entry cmd_show_prompt_history_entry = { .name = "show-prompt-history", .alias = "showphist", - .args = { "T:", 0, 0 }, + .args = { "T:", 0, 0, NULL }, .usage = "[-T type]", .flags = CMD_AFTERHOOK, @@ -42,7 +42,7 @@ const struct cmd_entry cmd_clear_prompt_history_entry = { .name = "clear-prompt-history", .alias = "clearphist", - .args = { "T:", 0, 0 }, + .args = { "T:", 0, 0, NULL }, .usage = "[-T type]", .flags = CMD_AFTERHOOK, |