Andrej write:
> The problem is the missing function tyo. It was defined in commac.lisp
> but was removed in the code cleanup (in revision 1.36). tyo is used in
> playback only with gcl, on other lisps write-char is used. We can
> either use write-char on all lisps or restore tyo for gcl. From cvs
> logs it looks like tyo is used instead of write-char because of a bug
> in gcl, so it is probably best to restore the definition of tyo.
GCL doesn't like the simple #'write-char in $playback. I wrapped
it up in a lambda and no it works.
Tested it with GCL (GNU Common Lisp) 2.6.7 ANSI.
I committed the fix just a few minutes ago.
'Andreas