From: David Vazquez Date: Wed, 6 Feb 2013 22:45:57 +0000 (+0000) Subject: Do not escape HTML in in the console X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=9852237f432fe773078fc2fb67d93f84fa6a484a;p=jscl.git Do not escape HTML in in the console --- diff --git a/ecmalisp.html b/ecmalisp.html index 110a686..cafc7d4 100644 --- a/ecmalisp.html +++ b/ecmalisp.html @@ -71,7 +71,7 @@ jqconsole.RegisterMatching('(', ')', 'parents'); lisp.write = function(str){ - jqconsole.Write(str, 'jqconsole-output'); + jqconsole.Write(str, 'jqconsole-output', false); return str; }