Variable: buffers-menu-show-status

buffers-menu-show-status is a customizable variable defined in menu-bar.el.gz.

Value

t

Documentation

If non-nil, show modified/read-only status of buffers in the Buffers menu.

Setting this variable directly does not take effect until next time the Buffers menu is regenerated.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/menu-bar.el.gz
(defcustom buffers-menu-show-status t
  "If non-nil, show modified/read-only status of buffers in the Buffers menu.
Setting this variable directly does not take effect until next time the
Buffers menu is regenerated."
  :set (lambda (symbol value)
	 (set symbol value)
	 (menu-bar-update-buffers t))
  :initialize 'custom-initialize-default
  :type 'boolean
  :group 'menu)