Function: set-window-next-buffers

set-window-next-buffers is a function defined in window.c.

Signature

(set-window-next-buffers WINDOW NEXT-BUFFERS)

Documentation

Set WINDOW's next buffers to NEXT-BUFFERS.

WINDOW must be a live window and defaults to the selected one. NEXT-BUFFERS should be a list of buffers.

Source Code

// Defined in /usr/src/emacs/src/window.c
{
  wset_next_buffers (decode_live_window (window), next_buffers);
  return next_buffers;
}