Remove unused LET*

This commit is contained in:
John Lorentzson 2025-07-30 10:35:06 +02:00
parent 1ab8dbb818
commit df009bac42

View file

@ -805,18 +805,17 @@ Additionally ensures correct line numbers on the way, as a bonus."
(compile-fail-prompt c (car source) (cdr source)))
nil))))
(unless (null bytes)
(let* ()
(with-open-file (output bin-name :direction :output
:element-type '(unsigned-byte 8)
:if-exists :supersede)
(dolist (byte bytes)
(write-byte byte output)))
(clear-screen)
(usc::send-data-to-c64 (coerce bytes 'vector)
'draw-transfer-progress)
(clear-screen)
(redisplay-view (current-view *editor*))
(redisplay-status-line :completely-p t))))))
(with-open-file (output bin-name :direction :output
:element-type '(unsigned-byte 8)
:if-exists :supersede)
(dolist (byte bytes)
(write-byte byte output)))
(clear-screen)
(usc::send-data-to-c64 (coerce bytes 'vector)
'draw-transfer-progress)
(clear-screen)
(redisplay-view (current-view *editor*))
(redisplay-status-line :completely-p t)))))