Closed faeredia closed 3 years ago
Tutorial 7 fails to run (on SBCL 2.1.1) returning The value 800 is not of type STRING when binding STRING
The value 800 is not of type STRING when binding STRING
width and height are returning integers changing:
width
height
(flet ((set-bounds () (setf bounds-x (parse-integer (width (window body)) :junk-allowed t)) (setf bounds-y (parse-integer (height (window body)) :junk-allowed t))))
to:
(flet ((set-bounds () (setf bounds-x (width (window body))) (setf bounds-y (height (window body)))))
runs as expected
My bad for not running through tests after a change. Corrected
Tutorial 7 fails to run (on SBCL 2.1.1) returning
The value 800 is not of type STRING when binding STRING
width
andheight
are returning integers changing:to:
runs as expected