Apress / common-lisp-condition-system

Source Code for 'The Common Lisp Condition System' by Michal "phoe" Herda
Other
97 stars 10 forks source link

Typo/bug in last tagbody example of Chapter 1 #14

Open mirkov opened 1 year ago

mirkov commented 1 year ago

Hello,

The typo is in the last form of Chapter 1, on p.22. The tagbody should read as

(tagbody
        (call-a-function (lambda () (go :false)))
     :false
        (print :false) ;; book has :true
        (go :exit)
     :true
        (print :true)
        (go :exit)
     :exit)

Mirko