Function: redraw-display

redraw-display is an interactive function defined in dispnew.c.

Signature

(redraw-display)

Documentation

Clear and redisplay all visible frames.

View in manual

Key Bindings

Source Code

// Defined in /usr/src/emacs/src/dispnew.c
{
  Lisp_Object tail, frame;

  FOR_EACH_FRAME (tail, frame)
    if (frame_redisplay_p (XFRAME (frame)))
      redraw_frame (XFRAME (frame));

  return Qnil;
}