Function: frame-after-make-frame

frame-after-make-frame is a function defined in frame.c.

Signature

(frame-after-make-frame FRAME MADE)

Documentation

Mark FRAME as made.

FRAME nil means use the selected frame. Second argument MADE non-nil means functions on window-configuration-change-hook are called whenever the window configuration of FRAME changes. MADE nil means these functions are not called.

This function is currently called by make-frame only and should be otherwise used with utter care to avoid that running functions on window-configuration-change-hook is impeded forever.

Source Code

// Defined in /usr/src/emacs/src/frame.c
{
  struct frame *f = decode_live_frame (frame);
  f->after_make_frame = !NILP (made);
  f->inhibit_horizontal_resize = false;
  f->inhibit_vertical_resize = false;
  return made;
}