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 33d76ff80e17cbbaf9457f2e8223096029c8082b
parent 3a8c396706aad6c7b62021c2f6571984bbe14ec6
Author: Alexander Burger <abu@software-lab.de>
Date:   Sat, 16 Mar 2013 07:42:13 +0100

Minor cosmetics
Diffstat:
Mlib/form.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/form.js b/lib/form.js @@ -1,4 +1,4 @@ -/* 15mar13abu +/* 16mar13abu * (c) Software Lab. Alexander Burger */ @@ -75,7 +75,7 @@ function setHref(fld, url) { var i = url.indexOf("+"); if (i >= 0) { - url = url.substring(0,i) + url.substr(i+1); + url = url.substr(0,i) + url.substr(i+1); fld.target = "_blank"; } fld.href = decodeURIComponent(url);