clix.raw: Fix sending arguments from the command line

Sat, 14 Nov 2020 15:39:16 +0100

author
Kim Alvefur <zash@zash.se>
date
Sat, 14 Nov 2020 15:39:16 +0100
changeset 136
2309402dd3cb
parent 135
c8cad3c42f3d
child 137
7130d5ec115c

clix.raw: Fix sending arguments from the command line

clix/raw.lua file | annotate | diff | comparison | revisions
--- a/clix/raw.lua	Sat Nov 14 15:36:16 2020 +0100
+++ b/clix/raw.lua	Sat Nov 14 15:39:16 2020 +0100
@@ -110,7 +110,7 @@
 			if send_xml then
 				conn:send(send_xml);
 			else
-				conn:send(table.concat(arg, " "));
+				conn:send(table.concat(args, " "));
 			end
 			conn:close();
 		end

mercurial