Function: Buffer-menu-not-modified

Buffer-menu-not-modified is an interactive and byte-compiled function defined in buff-menu.el.gz.

Signature

(Buffer-menu-not-modified &optional ARG)

Documentation

Mark the buffer on this line as unmodified (no changes to save).

If ARG is non-nil (interactively, with a prefix argument), mark it as modified.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/buff-menu.el.gz
(defun Buffer-menu-not-modified (&optional arg)
  "Mark the buffer on this line as unmodified (no changes to save).
If ARG is non-nil (interactively, with a prefix argument), mark
it as modified."
  (interactive "P" Buffer-menu-mode)
  (with-current-buffer (Buffer-menu-buffer t)
    (set-buffer-modified-p arg))
  (tabulated-list-set-col 2 (if arg "*" " ") t))