commit bb9be9f9b1991550675ea8be142632797472418c
parent 4bd984370ff2a4826a233d6817ddd20e948a44eb
Author: Alexander Burger <abu@software-lab.de>
Date: Mon, 9 May 2011 19:44:23 +0200
Global vs. local invocation
Diffstat:
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/ersatz/picolisp.jar b/ersatz/picolisp.jar
Binary files differ.
diff --git a/misc/calc.l b/misc/calc.l
@@ -1,10 +1,10 @@
-# 06may11abu
+# 09may11abu
# (c) Software Lab. Alexander Burger
# *Init *Accu *Stack
-(allowed NIL "!calculator" "favicon.ico" "lib.css")
-(load "lib/http.l" "lib/xhtml.l" "lib/form.l")
+(allowed NIL "!calculator" "favicon.ico" "@lib.css")
+(load "@lib/http.l" "@lib/xhtml.l" "@lib/form.l")
# Calculator logic
(de digit (N)
@@ -31,7 +31,7 @@
(de calculator ()
(app)
(action
- (html 0 "Bignum Calculator" "lib.css" NIL
+ (html 0 "Bignum Calculator" "@lib.css" NIL
(<h2> NIL "Bignum Calculator")
(form NIL
(<br> (gui '(+Var +NumField) '*Accu 60))
diff --git a/src/vers.h b/src/vers.h
@@ -1 +1 @@
-static byte Version[4] = {3,0,6,9};
+static byte Version[4] = {3,0,6,10};
diff --git a/src64/version.l b/src64/version.l
@@ -1,6 +1,6 @@
# 09may11abu
# (c) Software Lab. Alexander Burger
-(de *Version 3 0 6 9)
+(de *Version 3 0 6 10)
# vi:et:ts=3:sw=3