Variable: Buffer-menu-use-frame-buffer-list

Buffer-menu-use-frame-buffer-list is a customizable variable defined in buff-menu.el.gz.

Value

t

Documentation

If non-nil, the Buffer Menu uses the selected frame's buffer list.

Buffers that were never selected in that frame are listed at the end. If the value is nil, the Buffer Menu uses the global buffer list. This variable matters if the Buffer Menu is sorted by visited order, as it is by default.

This variable was added, or its default value changed, in Emacs 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/buff-menu.el.gz
(defcustom Buffer-menu-use-frame-buffer-list t
  "If non-nil, the Buffer Menu uses the selected frame's buffer list.
Buffers that were never selected in that frame are listed at the end.
If the value is nil, the Buffer Menu uses the global buffer list.
This variable matters if the Buffer Menu is sorted by visited order,
as it is by default."
  :type 'boolean
  :group 'Buffer-menu
  :version "22.1")