picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit 7a0658236364dfd45c9006555954e56f2064abf7
parent 430d5eebc00b8f94d878fc8e5d37dff6a3212265
Author: Alexander Burger <abu@software-lab.de>
Date:   Tue,  7 May 2013 19:02:32 +0200

JavaScript 'lisp': Synchronous mode not needed (just 'post')
Diffstat:
Mlib/form.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/form.js b/lib/form.js @@ -499,7 +499,7 @@ function lisp(form, url) { for (var i = 3; i < arguments.length; ++i) url += "&" + arguments[i]; } - try {LispReq.open("GET", SesId + "!" + url, form == null);} + try {LispReq.open("GET", SesId + "!" + url);} catch (e) {return true;} if (form) LispReq.onload = function() {post(form, null);}