Function: tpu-goto-percent
tpu-goto-percent is an interactive and byte-compiled function defined
in tpu-edt.el.gz.
Signature
(tpu-goto-percent PERC)
Documentation
Move point to ARG percentage of the buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-goto-percent (perc)
"Move point to ARG percentage of the buffer."
(interactive "NGoto-percentage: ")
(if (or (> perc 100) (< perc 0))
(tpu-error "Percentage %d out of range 0 < percent < 100." perc)
(goto-char (/ (* (point-max) perc) 100))))