summaryrefslogtreecommitdiff
path: root/test/shell
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2019-06-23 12:03:40 +1000
committerMaxime Coste <mawww@kakoune.org>2019-06-23 12:04:21 +1000
commitc9858bb6d1a3bf0c99f5387f4e1fd7791dc223b0 (patch)
treec31b6ee2a4279fdf81a483e3267e6e26abded7dd /test/shell
parent4b7b5d077ced7efd4f67cc619b9f2ddaa731b8d5 (diff)
Fix tests with new opt-in quoting
Diffstat (limited to 'test/shell')
-rw-r--r--test/shell/list-syntax/rc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/shell/list-syntax/rc b/test/shell/list-syntax/rc
index e60c1ad5..93b5e169 100644
--- a/test/shell/list-syntax/rc
+++ b/test/shell/list-syntax/rc
@@ -1,6 +1,6 @@
declare-option str-list my_list 'foo' 'bar' '''foo''bar'''
evaluate-commands %sh{
- eval set -- $kak_opt_my_list
+ eval set -- $kak_quoted_opt_my_list
for elem; do
echo exec "'i$(printf %s "$elem" | sed -e s/\'/\'\'/g)<ret><esc>'"
done