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 c9bc51631272c590d1faa19d49e1ac1690401ccb
parent 62542ee689f00399ef1b58573134eb23c5cc4cfd
Author: Alexander Burger <abu@software-lab.de>
Date:   Tue,  3 Jan 2012 19:47:21 +0100

Corrected: 'var' to use 'put' again
Diffstat:
Mersatz/lib.l | 4++--
Mlib.l | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ersatz/lib.l b/ersatz/lib.l @@ -219,8 +219,8 @@ # Class variables (de var X (if (pair (car X)) - (def (cdar X) (caar X) (cdr X)) - (def *Class (car X) (cdr X)) ) ) + (put (cdar X) (caar X) (cdr X)) + (put *Class (car X) (cdr X)) ) ) (de var: X (apply meta X This) ) diff --git a/lib.l b/lib.l @@ -266,8 +266,8 @@ # Class variables (de var X (if (pair (car X)) - (def (cdar X) (caar X) (cdr X)) - (def *Class (car X) (cdr X)) ) ) + (put (cdar X) (caar X) (cdr X)) + (put *Class (car X) (cdr X)) ) ) (de var: X (apply meta X This) )