FACT++  1.0
void Readline::Redisplay ( )
protectedvirtual

Default: call rl_redisplay()

Reimplemented in ReadlineWindow.

Definition at line 362 of file Readline.cc.

Referenced by rl_ncurses_redisplay().

363 {
364  static int W=-1, H=-1;
365 
366  int w, h;
367  rl_get_screen_size(&h, &w);
368  if (W==w && h==H)
369  {
370  rl_redisplay();
371  return;
372  }
373 
374  cout << '\r' << string(w+1, ' ') << '\r';
375 
376  W=w;
377  H=h;
378 
379  rl_forced_update_display();
380 }

+ Here is the caller graph for this function: