weird error added by sjamaan on Sat May 10 20:28:27 2014

;; Try the following code in a DEBUGBUILD (gcc) and without DEBUGBUILD

(use ports)
(handle-exceptions exn
    (print 'error)
    (print (if (char<? 1 #\a) 'smaller 'bigger-or-equal) ))
(handle-exceptions exn
    (print 'error)
    (print (if (char<? (with-input-from-string "1" read) #\a)
               'smaller 'bigger-or-equal)))