< Support Home
SETFing a variable to NIL on the REPL makes the variable unbound
ID
Created
Type
mocl Version
Dev OS
Target
Status
#45
by simon on 2014-06-27 (2395 days ago)
defect
14.05
Mac OS X
iOS
closed
Description
Summary: SETFing a variable to NIL on the REPL makes the variable unbound. Steps to Reproduce: In a lisp file to compile: (in-package :b) (defvar *bar* t) Compile, run on iPhone simulator. Connect to REPL on iPhone simulator. 🔸 (setf b::*bar* nil) Expected Results: In REPL connected to iPhone simulator: 🔸 (setf b::*bar* nil) nil 🔸 b::*bar* nil Actual Results: In REPL connected to iPhone simulator: 🔸 (setf b::*bar* nil) #<Unbound> 🔸 b::*bar* #<Unbound> Notes: Using mocl from Git, revision d4b1dac (latest).
Comments
Fix committed (0b2b2091e1)
- Wukix, 2395 days ago