summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/options.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2019-05-23 11:13:31 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2019-05-23 11:13:31 +0000
commit2a2a83c81e87824ba8fdfa6901f5c019f8c32f40 (patch)
tree9caaf05285ba4094c738d4f1f606ac856aa87627 /usr.bin/tmux/options.c
parent02d7cdabeada967676d838229434389f5dbec087 (diff)
Replace the split parser code (cfg.c and cmd-string.c) with a single
parser using yacc(1). This is a major change but is clearer and simpler and allows some edge cases to be made more consistent, as well as tidying up how aliases are handled. It will also allow some further improvements later. Entirely the same parser is now used for parsing the configuration file and for string commands. This means that constructs previously only available in .tmux.conf, such as %if, can now be used in string commands (for example, those given to if-shell - not commands invoked from the shell, they are still parsed by the shell itself). The only syntax change I am aware of is that #{} outside quotes or a comment is now considered a format and not a comment, so #{ is now a syntax error (notably, if it is at the start of a line). This also adds two new sections to the man page documenting the syntax and outlining how parsing and command execution works. Thanks to everyone who sent me test configs (they still all parse without errors - but this doesn't mean they still work as intended!). Thanks to Avi Halachmi for testing and man page improvements, also to jmc@ for reviewing the man page changes.
Diffstat (limited to 'usr.bin/tmux/options.c')
-rw-r--r--usr.bin/tmux/options.c21
1 files changed, 13 insertions, 8 deletions
diff --git a/usr.bin/tmux/options.c b/usr.bin/tmux/options.c
index 588f30d9b2f..1b3ef07ac09 100644
--- a/usr.bin/tmux/options.c
+++ b/usr.bin/tmux/options.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: options.c,v 1.44 2019/05/12 18:16:33 nicm Exp $ */
+/* $OpenBSD: options.c,v 1.45 2019/05/23 11:13:30 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -353,8 +353,7 @@ options_array_set(struct options_entry *o, u_int idx, const char *value,
{
struct options_array_item *a;
char *new;
- struct cmd_list *cmdlist;
- char *error;
+ struct cmd_parse_result *pr;
if (!OPTIONS_IS_ARRAY(o)) {
if (cause != NULL)
@@ -363,13 +362,19 @@ options_array_set(struct options_entry *o, u_int idx, const char *value,
}
if (OPTIONS_IS_COMMAND(o)) {
- cmdlist = cmd_string_parse(value, NULL, 0, &error);
- if (cmdlist == NULL && error != NULL) {
+ pr = cmd_parse_from_string(value, NULL);
+ switch (pr->status) {
+ case CMD_PARSE_EMPTY:
+ *cause = xstrdup("empty command");
+ return (-1);
+ case CMD_PARSE_ERROR:
if (cause != NULL)
- *cause = error;
+ *cause = pr->error;
else
- free(error);
+ free(pr->error);
return (-1);
+ case CMD_PARSE_SUCCESS:
+ break;
}
}
@@ -397,7 +402,7 @@ options_array_set(struct options_entry *o, u_int idx, const char *value,
if (OPTIONS_IS_STRING(o))
a->value.string = new;
else if (OPTIONS_IS_COMMAND(o))
- a->value.cmdlist = cmdlist;
+ a->value.cmdlist = pr->cmdlist;
return (0);
}