Handle all bank loading gracefully.

This commit is contained in:
Dominik Pantůček 2023-04-04 22:34:41 +02:00
parent cc4cfccae1
commit e25a75ab27
5 changed files with 51 additions and 29 deletions

View file

@ -43,8 +43,8 @@
(let* ((edvar (get-environment-variable "EDITOR"))
(editor (or edvar "editor"))
(pid (process-run editor (list file-path))))
(process-wait pid)
(clrscr)
(flush-output)))
(let-values (((a b c) (process-wait pid)))
(clrscr)
(flush-output))))
)