#include "ded.h" #include "ter.h" /************************************************************************ * * * copyright Richard Bornat 1981 * * * ************************************************************************/ /* the version with 'makespace' - which inserts a space * but doesn't move the cursor */ insc2(srow, scol, c1, c2, n) int srow, scol; register char c1, c2; register int n; { move_to(srow, scol); while (n-- > 0) { sendseq(ter.charseq.makespace); shufrow(srow, scol, 1); redisplay(srow, scol, c1); scol++; c1 = c2; } }