Function: decipher-show-alphabet

decipher-show-alphabet is an interactive and byte-compiled function defined in decipher.el.gz.

Signature

(decipher-show-alphabet)

Documentation

Display the current cipher alphabet in the message line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/play/decipher.el.gz
(defun decipher-show-alphabet ()
  "Display the current cipher alphabet in the message line."
  (interactive nil decipher-mode)
  (message "%s"
   (mapconcat (lambda (a)
                (concat
                 (char-to-string (car a))
                 (char-to-string (cdr a))))
              decipher-alphabet
              "")))