Function: crisp-mark-line
crisp-mark-line is an interactive and byte-compiled function defined
in crisp.el.gz.
Signature
(crisp-mark-line ARG)
Documentation
Set mark at the end of the line.
Arg works as in end-of-line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/crisp.el.gz
(defun crisp-mark-line (arg)
"Set mark at the end of the line.
Arg works as in `end-of-line'."
(interactive "p")
(let (newmark)
(save-excursion
(end-of-line arg)
(setq newmark (point)))
(push-mark newmark nil t)))