From 14795770b0fd9ad416fe4db121be1c197e338c95 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20V=C3=A1zquez?= Date: Sat, 4 May 2013 03:20:56 +0100 Subject: [PATCH] FFI conversion --- jscl.html | 18 +++++++++--------- src/compiler.lisp | 47 ++++++++++++++++++++++++----------------------- src/ffi.lisp | 6 +----- src/prelude.js | 14 ++++++++++---- 4 files changed, 44 insertions(+), 41 deletions(-) diff --git a/jscl.html b/jscl.html index 782db20..47b4efb 100644 --- a/jscl.html +++ b/jscl.html @@ -77,28 +77,28 @@ var startPrompt = function () { // Start the prompt with history enabled. - jqconsole.Write(xstring(lisp.evalString(pv, 1, make_lisp_string('(CL:PACKAGE-NAME CL:*PACKAGE*)'))) + '> ', 'jqconsole-prompt'); + jqconsole.Write(lisp.evalString('(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, make_lisp_string(input)); - for (var i=0; i