summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-command-prompt.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2020-04-13 18:59:41 +0000
committernicm <nicm@openbsd.org>2020-04-13 18:59:41 +0000
commit1c43462c00860893123cfcb958466f3c9b31489e (patch)
tree91ebdabb3789ee0217ac1184163448db9e5868c7 /usr.bin/tmux/cmd-command-prompt.c
parentFix a recently introduced iwn(4) problem where the link gets stuck since (diff)
downloadwireguard-openbsd-1c43462c00860893123cfcb958466f3c9b31489e.tar.xz
wireguard-openbsd-1c43462c00860893123cfcb958466f3c9b31489e.zip
Add helpers for the simple case of parse string and add to command queue.
Diffstat (limited to 'usr.bin/tmux/cmd-command-prompt.c')
-rw-r--r--usr.bin/tmux/cmd-command-prompt.c26
1 files changed, 7 insertions, 19 deletions
diff --git a/usr.bin/tmux/cmd-command-prompt.c b/usr.bin/tmux/cmd-command-prompt.c
index 00de7d0a147..0cb37cddb48 100644
--- a/usr.bin/tmux/cmd-command-prompt.c
+++ b/usr.bin/tmux/cmd-command-prompt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-command-prompt.c,v 1.49 2020/04/13 15:55:51 nicm Exp $ */
+/* $OpenBSD: cmd-command-prompt.c,v 1.50 2020/04/13 18:59:41 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -136,10 +136,9 @@ cmd_command_prompt_callback(struct client *c, void *data, const char *s,
int done)
{
struct cmd_command_prompt_cdata *cdata = data;
- struct cmdq_item *new_item;
- char *new_template, *prompt, *ptr;
+ char *new_template, *prompt, *ptr, *error;
char *input = NULL;
- struct cmd_parse_result *pr;
+ enum cmd_parse_status status;
if (s == NULL)
return (0);
@@ -166,21 +165,10 @@ cmd_command_prompt_callback(struct client *c, void *data, const char *s,
return (1);
}
- pr = cmd_parse_from_string(new_template, NULL);
- switch (pr->status) {
- case CMD_PARSE_EMPTY:
- new_item = NULL;
- break;
- case CMD_PARSE_ERROR:
- new_item = cmdq_get_error(pr->error);
- free(pr->error);
- cmdq_append(c, new_item);
- break;
- case CMD_PARSE_SUCCESS:
- new_item = cmdq_get_command(pr->cmdlist, NULL);
- cmd_list_free(pr->cmdlist);
- cmdq_append(c, new_item);
- break;
+ status = cmd_parse_and_append(new_template, NULL, c, NULL, &error);
+ if (status == CMD_PARSE_ERROR) {
+ cmdq_append(c, cmdq_get_error(error));
+ free(error);
}
if (!done)