From 933a51ed707158c4c0eee879e3a4db885d644cc6 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Thu, 28 Mar 2013 00:52:48 +0100 Subject: Change order of script output The order of parameters for `--script' and without it was different, to keep things simple these should be the same. --- js/clark.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'js/clark.js') diff --git a/js/clark.js b/js/clark.js index b1ea691..80eff5d 100644 --- a/js/clark.js +++ b/js/clark.js @@ -148,9 +148,9 @@ function clark_complete(input, pos, conservative) }); let c = { count: ret.length, - get_string: function (i) ret[i][0], - get_description: function (i) ret[i][1], - get_input_state: function (i) [ret[i][2]] }; + get_string: function (i) ret[i][1], + get_description: function (i) ret[i][2], + get_input_state: function (i) [ret[i][0]] }; yield co_return(c); } } -- cgit v1.2.3-54-g00ecf