Function: tpu-next-window

tpu-next-window is an interactive and byte-compiled function defined in tpu-edt.el.gz.

Signature

(tpu-next-window)

Documentation

Move to the next window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-next-window nil
  "Move to the next window."
  (interactive)
  (if (one-window-p) (message "There is only one window on screen.")
    (other-window 1)))