Function: tpu-next-file-buffer
tpu-next-file-buffer is an interactive and byte-compiled function
defined in tpu-edt.el.gz.
Signature
(tpu-next-file-buffer)
Documentation
Go to next buffer in ring that is visiting a file or directory.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-next-file-buffer nil
"Go to next buffer in ring that is visiting a file or directory."
(interactive)
(let ((list (tpu-make-file-buffer-list (buffer-list))))
(setq list (delq (current-buffer) list))
(if (not list) (tpu-error "No other buffers."))
(switch-to-buffer (car (reverse list)))))