Function: kill-paragraph

kill-paragraph is an interactive and byte-compiled function defined in paragraphs.el.gz.

Signature

(kill-paragraph ARG)

Documentation

Kill forward to end of paragraph.

With ARG N, kill forward to Nth end of paragraph; negative ARG -N means kill backward to Nth start of paragraph.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/paragraphs.el.gz
(defun kill-paragraph (arg)
  "Kill forward to end of paragraph.
With ARG N, kill forward to Nth end of paragraph;
negative ARG -N means kill backward to Nth start of paragraph."
  (interactive "p")
  (kill-region (point) (progn (forward-paragraph arg) (point))))