[CM] list* == unbound variable

Heinrich Taube taube at uiuc.edu
Tue Oct 27 10:55:32 PDT 2009


>
> unbound variable-messages are also produced by:
> *scale*
> hertz
> keynum
> interval
> print
> pprint
>
> (in Grace (lisp)).


these are very old common lisp names.


> *scale*

this global is no longer necessary/needed -- just use the (scale ... )  
function if you want to create an alternate tuning or mode)

> hertz

its  called hz, eg    (hz 60)

> keynum

its called key  , eg (key 'c4)

> interval

not necessary/needed just use ints 0 1 2 3  etc


> print


(define (print x)
    (format #t "~S~%" x)
    (void))

> pprint

hmm. maybe s7 has this now, ill look



More information about the Cmdist mailing list