Function: tpu-make-file-buffer-list
tpu-make-file-buffer-list is a byte-compiled function defined in
tpu-edt.el.gz.
Signature
(tpu-make-file-buffer-list BUFFER-LIST)
Documentation
Return names from BUFFER-LIST excluding those beginning with a space or star.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-make-file-buffer-list (buffer-list)
"Return names from BUFFER-LIST excluding those beginning with a space or star."
(delq nil (mapcar (lambda (b)
(if (or (= (aref (buffer-name b) 0) ?\s)
(= (aref (buffer-name b) 0) ?*)) nil b))
buffer-list)))