Function: tpu-move-to-end
tpu-move-to-end is an interactive and byte-compiled function defined
in tpu-edt.el.gz.
Signature
(tpu-move-to-end)
Documentation
Move cursor to the end of buffer, but don't set the mark.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-move-to-end nil
"Move cursor to the end of buffer, but don't set the mark."
(interactive)
(goto-char (point-max))
(recenter -1))