commit a0ec237c541588192dd62256eaee51224f9ee2c3
parent 564cb1c6c7ed6bbbc2f6de6d82872857471a19b6
Author: Alexander Burger <abu@software-lab.de>
Date: Mon, 16 May 2011 11:06:57 +0200
Renamed "ersatz/picolisp" to "ersatz/pil"
Diffstat:
5 files changed, 15 insertions(+), 12 deletions(-)
diff --git a/INSTALL b/INSTALL
@@ -1,4 +1,4 @@
-07may11abu
+16may11abu
(c) Software Lab. Alexander Burger
@@ -146,10 +146,10 @@ Note that 'pil' can also serve as a template for your own stand-alone scripts.
If you just want to test the ready-to-run Ersatz PicoLisp (it needs a Java
runtime system), use
- $ ersatz/picolisp +
+ $ ersatz/pil +
:
-instead of './dbg' './pil +'.
+instead of './dbg' or './pil +'.
Documentation
diff --git a/ReleaseNotes b/ReleaseNotes
@@ -1,4 +1,4 @@
-07may11abu
+16may11abu
(c) Software Lab. Alexander Burger
@@ -31,3 +31,6 @@
As a result, it may be necessary to fix existing applications. This involves
usually changing things like "@start" and "@stop" to "!start" and "!stop" in
all relevant places.
+
+5. For Ersatz PicoLisp, the startup script's name was changed from "picolisp" to
+ "pil", to be consistent with 'pil' in "real" PicoLisp.
diff --git a/ersatz/README b/ersatz/README
@@ -1,4 +1,4 @@
-19jan11abu
+16may11abu
(c) Software Lab. Alexander Burger
@@ -29,16 +29,16 @@ There is no support for
Invocation
----------
-Ersatz PicoLisp can be started - analog to 'bin/picolisp' - as
+Ersatz PicoLisp can be started - analog to 'pil' - as
- $ ersatz/picolisp
+ $ ersatz/pil
-This already includes slighly simplfied versions of the standard libraries as
-loaded by './p' (without database, but with Pilog and XML support).
+This includes slighly simplfied versions of the standard libraries as loaded by
+the "real" 'pil' (without database, but with Pilog and XML support).
To start it in debug mode, use
- $ ersatz/picolisp +
+ $ ersatz/pil +
On non-Unix systems, you might start 'java' directly, e.g.:
diff --git a/ersatz/picolisp b/ersatz/pil
diff --git a/src64/mkAsm b/src64/mkAsm
@@ -1,11 +1,11 @@
#!/bin/sh
-# 17nov10abu
+# 16may11abu
if test -x ../bin/picolisp
then
../bin/picolisp ../lib.l @lib/misc.l mkAsm.l "$@"
else
- ../ersatz/picolisp mkAsm.l "$@"
+ ../ersatz/pil mkAsm.l "$@"
fi
# vi:et:ts=3:sw=3