#include "ded.h" #include "ter.h" /************************************************************************ * * * copyright Richard Bornat 1981 * * * ************************************************************************/ /* the version with 'inspace' - which inserts a space and moves the cursor */ insc1(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.inspace); real_c.col++; shufrow(srow, scol, 1); } move_to(srow,scol); while (n-- > 0) { redisplay(srow, scol, c1); scol++; c1 = c2; } }