Function: tpu-previous-window
tpu-previous-window is an interactive and byte-compiled function
defined in tpu-edt.el.gz.
Signature
(tpu-previous-window)
Documentation
Move to the previous window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-previous-window nil
"Move to the previous window."
(interactive)
(if (one-window-p) (message "There is only one window on screen.")
(select-window (previous-window))))