Function: window-use-time

window-use-time is a function defined in window.c.

Signature

(window-use-time &optional WINDOW)

Documentation

Return the use time of window WINDOW.

WINDOW must be a live window and defaults to the selected one. The window with the highest use time is the most recently selected one. The window with the lowest use time is the least recently selected one.

Source Code

// Defined in /usr/src/emacs/src/window.c
{
  return make_fixnum (decode_live_window (window)->use_time);
}