Function: edt-delete-entire-line

edt-delete-entire-line is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-delete-entire-line)

Documentation

Delete entire line regardless of cursor position in the line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; DELETE ENTIRE LINE
;;;

(defun edt-delete-entire-line ()
  "Delete entire line regardless of cursor position in the line."
  (interactive "*")
  (beginning-of-line)
  (edt-delete-line 1))