[CM] loading of .cminit

Anders Vinjar andersvi@extern.uio.no
Tue, 31 Aug 2004 15:18:31 +0200


It was the warning about:

  Warning: CLM also exports the following symbols: (MUS-RIFF
  FINISH-WITH-SOUND CLM-LOAD INIT-WITH-SOUND MUS-NEXT WSDAT-PLAY

throwing out of the loading of all.lisp

wrapping it inside a

  (handler-bind ((simple-warning 
                  #'(lambda (c) (declare (ignore c)))))
     (load-clm-here))

made everything work as expected using #'safe-load.


>>> "RT" == Rick Taube <taube@uiuc.edu> writes:
RT> 
RT> how odd!  is it perhaps due to an error that cmu is trapping and then
RT> aborting? what happens if there is no warning?
RT> -rick
RT> 
RT> On Aug 31, 2004, at 4:04 AM, Anders Vinjar wrote:
RT> 
>> 
>> Observing some weirdness connected with loading of ~/.cminit.lisp
>> here.
>> 
>> Using cmucl.
>> 
>> As the function load-cminit is defined now in level1.lisp it
>> starts loading ~/.cminit.lisp upon startup (cm.sh), but quits
>> halfway through, once theres some kind of output printed it
>> seems.
RT>