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?
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?
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!