From 9852237f432fe773078fc2fb67d93f84fa6a484a Mon Sep 17 00:00:00 2001 From: David Vazquez Date: Wed, 6 Feb 2013 22:45:57 +0000 Subject: [PATCH] Do not escape HTML in in the console --- ecmalisp.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 1.7.10.4