[CM] fun with CM + Linux

Rick Taube taube@uiuc.edu
Fri, 6 Dec 2002 12:49:42 -0600


>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)