Possible bug in (documentation 'symbol)


#1

Not sure if I missed something, but when I do

(defvar a nil)
(documentation (read-from-string “a”))

uLisp crashes (instead of giving an error or an empty line). Should it be that way?


#3

The read-from-string is a red herring. It also fails with:

(defvar a nil)
(documentation 'a)

It will be fixed in the next release!


#4

Fixed in uLisp 4.9.


#5