Function: msb-invisible-buffer-p

msb-invisible-buffer-p is a byte-compiled function defined in msb.el.gz.

Signature

(msb-invisible-buffer-p &optional BUFFER)

Documentation

Return t if optional BUFFER is an "invisible" buffer.

If the argument is left out or nil, then the current buffer is considered.

Source Code

;; Defined in /usr/src/emacs/lisp/msb.el.gz
;;;
;;; Some supportive functions
;;;
(defun msb-invisible-buffer-p (&optional buffer)
  "Return t if optional BUFFER is an \"invisible\" buffer.
If the argument is left out or nil, then the current buffer is considered."
  (and (> (length (buffer-name buffer)) 0)
       (eq ?\s (aref (buffer-name buffer) 0))))