Function: bs--set-toggle-to-show
bs--set-toggle-to-show is a byte-compiled function defined in
bs.el.gz.
Signature
(bs--set-toggle-to-show BUFFER WHAT)
Documentation
Set value bs-buffer-show-mark of buffer BUFFER to WHAT.
Redisplay current line and display a message describing the status of buffer on current line.
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs--set-toggle-to-show (buffer what)
"Set value `bs-buffer-show-mark' of buffer BUFFER to WHAT.
Redisplay current line and display a message describing
the status of buffer on current line."
(with-current-buffer buffer (setq bs-buffer-show-mark what))
(bs--update-current-line)
(bs--set-window-height)
(bs--show-config-message what))