Remove stupid error ignoring from COMPILE-AND-SEND-TO-C64

This commit is contained in:
John Lorentzson 2025-07-10 18:18:18 +02:00
parent 57a47e6ba3
commit 3373409100

View file

@ -246,6 +246,4 @@
(defun compile-and-send-to-c64 (string) (defun compile-and-send-to-c64 (string)
(let ((bytes (compile-string-to-bytes string :print-ir-p t))) (let ((bytes (compile-string-to-bytes string :print-ir-p t)))
(handler-case (send-data-to-c64 (coerce bytes 'vector))))
(send-data-to-c64 (coerce bytes 'vector))
(error (c) (abort c)))))