Function: decipher-display-stats-buffer

decipher-display-stats-buffer is a byte-compiled function defined in decipher.el.gz.

Signature

(decipher-display-stats-buffer)

Documentation

Make the statistics buffer visible, but do not select it.

Source Code

;; Defined in /usr/src/emacs/lisp/play/decipher.el.gz
;;--------------------------------------------------------------------

(defun decipher-display-stats-buffer ()
  "Make the statistics buffer visible, but do not select it."
  (let ((stats-buffer (decipher-stats-buffer))
        (current-window (selected-window)))
    (or (eq (current-buffer) stats-buffer)
        (progn
          (pop-to-buffer stats-buffer)
          (select-window current-window)))))