Function: tpu-current-end-of-line

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

Signature

(tpu-current-end-of-line)

Documentation

Move point to end of current line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-extras.el.gz
(defun tpu-current-end-of-line ()
  "Move point to end of current line."
  (interactive)
  (let ((beg (point)))
    (if tpu-cursor-free-mode (picture-end-of-line) (end-of-line))
    (if (= beg (point)) (message "You are already at the end of a line."))))