Function: bs-visits-non-file

bs-visits-non-file is a byte-compiled function defined in bs.el.gz.

Signature

(bs-visits-non-file BUFFER)

Documentation

Return whether BUFFER visits no file.

A value of t means BUFFER belongs to no file. A value of nil means BUFFER belongs to a file.

Source Code

;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs-visits-non-file (buffer)
  "Return whether BUFFER visits no file.
A value of t means BUFFER belongs to no file.
A value of nil means BUFFER belongs to a file."
  (not (buffer-file-name buffer)))