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 da572829ddd668eb2d5f6e2aee36186d79a25d0d
parent a824517b31146bcd447f52e1e6e52b806838514e
Author: Alexander Burger <abu@software-lab.de>
Date:   Fri, 29 Apr 2011 08:44:56 +0200

Compatibility of global and local installations
Diffstat:
Mgames/xchess | 4++--
Mmisc/calc | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/games/xchess b/games/xchess @@ -1,8 +1,8 @@ #!/usr/bin/picolisp /usr/lib/picolisp/lib.l -# 12nov09abu +# 29apr11abu # (c) Software Lab. Alexander Burger -(load "@games/chess.l") +(load "/usr/share/picolisp/games/chess.l") # (load "@games/chess.l") (de reply @ (prinl (glue " " (rest))) diff --git a/misc/calc b/misc/calc @@ -1,8 +1,8 @@ #!bin/picolisp lib.l -# 21jan07abu +# 29apr11abu # (c) Software Lab. Alexander Burger -(load "@lib/misc.l" "@misc/calc.l") +(load "@lib/misc.l" "/usr/share/picolisp/misc/calc.l") # Initialize (main)