Variable: epa-replace-original-text
epa-replace-original-text is a customizable variable defined in
epa.el.gz.
Value
ask
Documentation
Whether the original text shall be replaced by the decrypted.
If t, replace the original text without any confirmation. If nil, don't replace the original text and show the result in a new buffer. If neither t nor nil, ask user for confirmation.
This variable was added, or its default value changed, in Emacs 26.1.
Source Code
;; Defined in /usr/src/emacs/lisp/epa.el.gz
(defcustom epa-replace-original-text 'ask
"Whether the original text shall be replaced by the decrypted.
If t, replace the original text without any confirmation.
If nil, don't replace the original text and show the result in a new buffer.
If neither t nor nil, ask user for confirmation."
:version "26.1"
:type '(choice (const :tag "Never" nil)
(const :tag "Ask the user" ask)
(const :tag "Always" t))
:group 'epa)