Function: picture-end-of-line

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

Signature

(picture-end-of-line &optional ARG)

Documentation

Position point after last non-blank character on current line.

With ARG not nil, move forward ARG - 1 lines first. If scan reaches end of buffer, stop there without error.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/picture.el.gz
(defun picture-end-of-line (&optional arg)
  "Position point after last non-blank character on current line.
With ARG not nil, move forward ARG - 1 lines first.
If scan reaches end of buffer, stop there without error."
  (interactive "^P")
  (if arg (forward-line (1- (prefix-numeric-value arg))))
  (beginning-of-line)
  (skip-chars-backward " \t" (prog1 (point) (end-of-line)))
  (setq picture-desired-column (current-column)))