diff options
author | Brian Ashworth <bosrsf04@gmail.com> | 2018-09-30 12:35:45 -0400 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2018-09-30 12:35:45 -0400 |
commit | a125575eb5ddea8d60228350676e61b87add116f (patch) | |
tree | 016d952e12a685bb3d50ba94cd1c118548f5f998 /sway/commands.c | |
parent | 87a70b35919949d79ae724760d4fcb06e4f7bc64 (diff) |
Do not strip quotes for cmd_set
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c index 831d4492..03cfebd7 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -394,6 +394,7 @@ struct cmd_results *config_command(char *exec) { if (handler->handle != cmd_exec && handler->handle != cmd_exec_always && handler->handle != cmd_bindsym && handler->handle != cmd_bindcode + && handler->handle != cmd_set && (*argv[i] == '\"' || *argv[i] == '\'')) { strip_quotes(argv[i]); } |