;;;; type-errors-atoms.impl.scm -*- Scheme -*- ;;;; Kon Lovett, Jul '18 ;; Issues ;; ;; - The type error message is built so as to look like those of the Chicken ;; "core". This constraint necessarily means some knowledge of the use of the ;; indefinite article. So any I18N effort will either have some logic needed or ;; a change to the Chicken "core" form. ;; ;; Maybe "... not an integer" -> "... integer required" & ;; "... not a list" -> "... list required". ;;; (define-error-type symbol) (define-error-type keyword) (define-error-type char) (define-error-type boolean)