Variable: decipher-stats-mode-map

decipher-stats-mode-map is a variable defined in decipher.el.gz.

Value

-       negative-argument
D       decipher-digram-list
F       decipher-frequency-count
N       decipher-adjacency-list
O..\x3FFFFF    digit-argument
SPC..~  undefined

Documentation

Keymap for Decipher-Stats mode.

Source Code

;; Defined in /usr/src/emacs/lisp/play/decipher.el.gz
(defvar decipher-stats-mode-map
  (let ((map (make-keymap)))
    (suppress-keymap map)
    (define-key map "D" #'decipher-digram-list)
    (define-key map "F" #'decipher-frequency-count)
    (define-key map "N" #'decipher-adjacency-list)
    map)
  "Keymap for Decipher-Stats mode.")