commit a125575eb5ddea8d60228350676e61b87add116f
parent 87a70b35919949d79ae724760d4fcb06e4f7bc64
Author: Brian Ashworth <bosrsf04@gmail.com>
Date: Sun, 30 Sep 2018 12:35:45 -0400
Do not strip quotes for cmd_set
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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]);
}