Function: org-decrypt-entries
org-decrypt-entries is an autoloaded, interactive and byte-compiled
function defined in org-crypt.el.gz.
Signature
(org-decrypt-entries)
Documentation
Decrypt all entries in the current buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-crypt.el.gz
;;;###autoload
(defun org-decrypt-entries ()
"Decrypt all entries in the current buffer."
(interactive)
(let ((org--matcher-tags-todo-only nil))
(org-scan-tags
'org-decrypt-entry
(cdr (org-make-tags-matcher org-crypt-tag-matcher))
org--matcher-tags-todo-only)))