Function: bs--get-modified-string
bs--get-modified-string is a byte-compiled function defined in
bs.el.gz.
Signature
(bs--get-modified-string START-BUFFER ALL-BUFFERS)
Documentation
Return a string which describes whether current buffer is modified.
START-BUFFER is the buffer where we started buffer selection. ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu.
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs--get-modified-string (_start-buffer _all-buffers)
"Return a string which describes whether current buffer is modified.
START-BUFFER is the buffer where we started buffer selection.
ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu."
(if (buffer-modified-p) "*" " "))