Function: pgg-display-output-buffer
pgg-display-output-buffer is a byte-compiled function defined in
pgg.el.gz.
Signature
(pgg-display-output-buffer START END STATUS)
Documentation
Situate en/decryption results or pop up an error buffer.
Text from START to END is replaced by contents of output buffer if STATUS is true, or else the output buffer is displayed.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/pgg.el.gz
;; XXX `pgg-display-output-buffer' is a horrible name for this function.
;; It should be something like `pgg-situate-output-or-display-error'.
(defun pgg-display-output-buffer (start end status)
"Situate en/decryption results or pop up an error buffer.
Text from START to END is replaced by contents of output buffer if STATUS
is true, or else the output buffer is displayed."
(if status
(pgg-situate-output start end)
(pgg-display-error-buffer)))