Function: bs--show-config-message

bs--show-config-message is a byte-compiled function defined in bs.el.gz.

Signature

(bs--show-config-message WHAT)

Documentation

Show message indicating the new showing status WHAT.

WHAT is a value of nil, never, or always.

Source Code

;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs--show-config-message (what)
  "Show message indicating the new showing status WHAT.
WHAT is a value of nil, `never', or `always'."
  (bs-message-without-log (cond ((null what)
				 "Buffer will be shown normally.")
				((eq what 'never)
				 "Mark buffer to never be shown.")
				(t "Mark buffer to show always."))))