Function: pgg-situate-output
pgg-situate-output is a byte-compiled function defined in pgg.el.gz.
Signature
(pgg-situate-output START END)
Documentation
Place en/decryption result in place of current text from START to END.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/pgg.el.gz
(defun pgg-situate-output (start end)
"Place en/decryption result in place of current text from START to END."
(delete-region start end)
(insert-buffer-substring pgg-output-buffer)
(decode-coding-region start (point) buffer-file-coding-system))