Function: run-window-configuration-change-hook

run-window-configuration-change-hook is a function defined in window.c.

This function is obsolete since 27.1.

Signature

(run-window-configuration-change-hook &optional FRAME)

Documentation

Run window-configuration-change-hook for FRAME.

If FRAME is omitted or nil, it defaults to the selected frame.

This function should not be needed any more and will be therefore considered obsolete.

Probably introduced at or before Emacs version 27.1.

Source Code

// Defined in /usr/src/emacs/src/window.c
{
  run_window_configuration_change_hook (decode_live_frame (frame));
  return Qnil;
}