Variable: org-agenda-confirm-kill
org-agenda-confirm-kill is a customizable variable defined in
org-agenda.el.gz.
Value
1
Documentation
When set, remote killing from the agenda buffer needs confirmation.
When t, a confirmation is always needed. When a number N, confirmation is only needed when the text to be killed contains more than N non-white lines.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-confirm-kill 1
"When set, remote killing from the agenda buffer needs confirmation.
When t, a confirmation is always needed. When a number N, confirmation is
only needed when the text to be killed contains more than N non-white lines."
:group 'org-agenda
:type '(choice
(const :tag "Never" nil)
(const :tag "Always" t)
(integer :tag "When more than N lines")))