Variable: org-archive-mark-done
org-archive-mark-done is a customizable variable defined in
org-archive.el.gz.
Value
nil
Documentation
Non-nil means mark entries as DONE when they are moved to the archive file.
This can be a string to set the keyword to use. When non-nil, Org will use the first keyword in its list that means done.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-archive.el.gz
(defcustom org-archive-mark-done nil
"Non-nil means mark entries as DONE when they are moved to the archive file.
This can be a string to set the keyword to use. When non-nil, Org will
use the first keyword in its list that means done."
:group 'org-archive
:type '(choice
(const :tag "No" nil)
(const :tag "Yes" t)
(string :tag "Use this keyword")))