Function: raise-frame

raise-frame is an interactive function defined in frame.c.

Signature

(raise-frame &optional FRAME)

Documentation

Bring FRAME to the front, so it occludes any frames it overlaps.

If FRAME is invisible or iconified, make it visible. If you don't specify a frame, the selected frame is used.

View in manual

Probably introduced at or before Emacs version 19.29.

Key Bindings

Source Code

// Defined in /usr/src/emacs/src/frame.c
{
  struct frame *f = decode_live_frame (frame);

  XSETFRAME (frame, f);

  Fmake_frame_visible (frame);

  if (FRAME_TERMINAL (f)->frame_raise_lower_hook)
    (*FRAME_TERMINAL (f)->frame_raise_lower_hook) (f, true);

  return Qnil;
}