Function: bs--get-readonly-string

bs--get-readonly-string is a byte-compiled function defined in bs.el.gz.

Signature

(bs--get-readonly-string START-BUFFER ALL-BUFFERS)

Documentation

Return a string which describes whether current buffer is read only.

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-readonly-string (_start-buffer _all-buffers)
  "Return a string which describes whether current buffer is read only.
START-BUFFER is the buffer where we started buffer selection.
ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu."
  (if buffer-read-only "%" " "))