Function: tpu-next-beginning-of-line

tpu-next-beginning-of-line is an interactive and byte-compiled function defined in tpu-extras.el.gz.

Signature

(tpu-next-beginning-of-line NUM)

Documentation

Move to beginning of line; if at beginning, move to beginning of next line.

Accepts a prefix argument for the number of lines to move.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-extras.el.gz
(defun tpu-next-beginning-of-line (num)
  "Move to beginning of line; if at beginning, move to beginning of next line.
Accepts a prefix argument for the number of lines to move."
  (interactive "p")
  (let ((beg (tpu-current-line)))
    (backward-char 1)
    (forward-visible-line (- 1 num))
    (tpu-top-check beg num)))