[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
VALUE-CELL-LOCATION
- To: GSB at MIT-MC
- Subject: VALUE-CELL-LOCATION
- From: JONL at MIT-MC (Jon L White)
- Date: Sat, 4 Aug 79 21:03:00 GMT
- Cc: (BUG LISP) at MIT-MC
- Original-date: 4 AUG 1979 1703-EDT
From: GSB@MIT-ML
Date: Sat, 8 Apr 79 07:55:29 GMT
Original-Date: 08/04/79 03:55:29 EDT
Subject: Re: VALUE-CELL-LOCATION
If this gets implemented, it probably would be a good idea to
allow differentiation of unbound variables which have the shared
value cell and those that do not (the way (get var 'value) returns
NIL if var has never been bound, else (NIL . UNBOUND)). Maybe
-1 in one case and 0 in the other, making PLUSP the canonical
check on VALUE-CELL-LOCATION's result to see if the var is bound?
I meant to say in my original proposal, that 0 was to be returned
if there were no "private" value cell, and the address of the "private"
value cell would be returned when there was one, regardless of whether
or not the symbol was "bound". A combination of BOUNDP and
VALUE-CELL-LOCATION can distinguish the two cases you mention,
namely, "unbound, but no private value cell", and "unbound, with
unoubnd marker in private value cell".