From: David Vázquez Date: Fri, 3 May 2013 00:54:01 +0000 (+0100) Subject: WIP: Strings as array of characters implementation X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=d15ff6cf9e47d39ec9949ebafa1dcd2be6ac8be7;p=jscl.git WIP: Strings as array of characters implementation --- diff --git a/jscl.html b/jscl.html index 3cd1330..1dfe7fc 100644 --- a/jscl.html +++ b/jscl.html @@ -77,12 +77,12 @@ var startPrompt = function () { // Start the prompt with history enabled. - jqconsole.Write(lisp.evalString(pv, 1, '(CL:PACKAGE-NAME CL:*PACKAGE*)') + '> ', 'jqconsole-prompt'); + jqconsole.Write(lisp.evalString(pv, 1, make_lisp_string('(CL:PACKAGE-NAME CL:*PACKAGE*)')) + '> ', 'jqconsole-prompt'); jqconsole.Prompt(true, function (input) { // Output input with the class jqconsole-return. if (input[0] != ','){ try { - var vs = lisp.evalInput(mv, 1, input); + var vs = lisp.evalInput(mv, 1, make_lisp_string(input)); for (var i=0; i