#include "ded.h" /************************************************************************ * * * copyright Richard Bornat 1981 * * * ************************************************************************/ /* debugging messages at the bottom of the screen */ /* VARARGS1 */ dbugprintf(s) char *s; { register char c1; extern int getfline(); extern char qread(); move_to(EDITROW,0); ttyflush(); /* this is ESSENTIAL */ printf("\n"); x_printf(&s); /* await user response */ c1 = qread(); if (c1!=' ') { savescreen(); setupscreen(); } }