
#include "vt.h"

void VT100_Hardcopy_Barton::insert (char c)
{
  if(c==' ') { if(maybe_doing_clearing_wsp) return; }
  else maybe_doing_clearing_wsp =0;

  return VT100_Hardcopy::insert(c);
}

void VT100_Hardcopy_Barton::CUP (int x, int y)
{
  if(x==23) maybe_doing_clearing_wsp =1;
  else      maybe_doing_clearing_wsp =0;
  return VT100_Hardcopy::CUP(x,y);
}
