/[pupa]/pupa/kern/term.c
ViewVC logotype

Diff of /pupa/kern/term.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by okuji, Thu Sep 25 20:15:52 2003 UTC revision 1.4 by marco_g, Mon Nov 17 18:07:07 2003 UTC
# Line 193  void Line 193  void
193  pupa_cls (void)  pupa_cls (void)
194  {  {
195    if (pupa_cur_term->flags & PUPA_TERM_DUMB)    if (pupa_cur_term->flags & PUPA_TERM_DUMB)
196      pupa_putchar ('\n');      {
197          pupa_putchar ('\n');
198          pupa_refresh ();
199        }
200    else    else
201      (pupa_cur_term->cls) ();      (pupa_cur_term->cls) ();
202  }  }
# Line 227  pupa_setcursor (int on) Line 230  pupa_setcursor (int on)
230    return ret;    return ret;
231  }  }
232    
233    void
234    pupa_refresh (void)
235    {
236      if (pupa_cur_term->refresh)
237        (pupa_cur_term->refresh) ();
238    }

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26