>Btw, here's what I have in cminit.lisp now: > > (set-midi-output-hook! #'oss-play-midi-file) > (set-cmn-output-hook! #'load) > AHA, thats what the problem is in your bug report! Dont use #'load directly as the hook. Try this in your init file. (defun cmn-load (file &rest args) args (load file)) (set-cmn-output-hook! #'cmn-load)