Function: org-crypt--encrypted-text
org-crypt--encrypted-text is a byte-compiled function defined in
org-crypt.el.gz.
Signature
(org-crypt--encrypted-text BEG END)
Documentation
Return encrypted text in between BEG and END.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-crypt.el.gz
(defun org-crypt--encrypted-text (beg end)
"Return encrypted text in between BEG and END."
;; Ignore indentation.
(replace-regexp-in-string
"^[ \t]*" ""
(buffer-substring-no-properties beg end)))