> Maxima has an alternative function with the name appendfile. It works
> like the function writefile, but does not use the underlying Lisp
> function dribble.
>
> Dieter Kaiser
>
Apparently it uses dribble (and also nothing is written to file):
(%i3) appendfile("Test.log");
/* Starts dribbling to Test.log (2011/11/5, 20:40:47).*/
some stuff ...
(%i6) closefile();
/*Finished dribbling to Test.log.*/
Still Test.log is empty.
Oliver