diff web/src/luan/modules/web/shell.luan @ 402:62b457c50594

add stripe; change Luan.values to only return values, not indexes;
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 28 Apr 2015 22:38:31 -0600
parents 199eb7f1b828
children
line wrap: on
line diff
--- a/web/src/luan/modules/web/shell.luan	Tue Apr 28 13:21:50 2015 -0600
+++ b/web/src/luan/modules/web/shell.luan	Tue Apr 28 22:38:31 2015 -0600
@@ -21,7 +21,7 @@
 		if cmd ~= nil then
 			Io.stdout = {}
 			function Io.stdout.write(...)
-				for _,v in Luan.values(...) do
+				for v in Luan.values(...) do
 					history[#history+1] = v
 				end
 			end