1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-05 04:54:12 +01:00

Remove straggling String#quote usage.

String#quote is no more.

Fixes :mkvimruntime.
This commit is contained in:
Doug Kearns
2015-05-14 03:02:30 +10:00
parent a9a97704f3
commit 07ce319763
4 changed files with 6 additions and 7 deletions

View File

@@ -868,7 +868,7 @@ unlet s:cpo_save
Ary(o.names for (o of options) if (o.type != "boolean")).flatten()),
toggleoptions: wrap("let s:toggleOptions = [",
Ary(o.realNames for (o of options) if (o.type == "boolean"))
.flatten().map(String.quote),
.flatten().map(JSON.stringify),
", ") + "]"
}; //}}}