Function: decipher-frequency-count

decipher-frequency-count is an interactive and byte-compiled function defined in decipher.el.gz.

Signature

(decipher-frequency-count)

Documentation

Display the frequency count in the statistics buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/play/decipher.el.gz
;;;===================================================================
;;; Analyzing ciphertext:
;;;===================================================================

(defun decipher-frequency-count ()
  "Display the frequency count in the statistics buffer."
  (interactive nil decipher-mode)
  (decipher-analyze)
  (decipher-display-regexp "^A" "^[A-Z][A-Z]"))