Function: crisp-kill-line
crisp-kill-line is an interactive and byte-compiled function defined
in crisp.el.gz.
Signature
(crisp-kill-line ARG)
Documentation
Mark and kill line(s).
Marks from point to end of the current line (honoring prefix arguments), copies the region to the kill ring and clipboard, and then deletes it.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/crisp.el.gz
(defun crisp-kill-line (arg)
"Mark and kill line(s).
Marks from point to end of the current line (honoring prefix arguments),
copies the region to the kill ring and clipboard, and then deletes it."
(interactive "*p")
(if (crisp-region-active)
(call-interactively 'crisp-kill-region)
(crisp-mark-line arg)
(call-interactively 'crisp-kill-region)))