Function: decipher-read-alphabet
decipher-read-alphabet is a byte-compiled function defined in
decipher.el.gz.
Signature
(decipher-read-alphabet)
Documentation
Build the decipher-alphabet from the alphabet line in the buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/play/decipher.el.gz
;;--------------------------------------------------------------------
;; Miscellaneous functions:
;;--------------------------------------------------------------------
(defun decipher-read-alphabet ()
"Build the decipher-alphabet from the alphabet line in the buffer."
(save-excursion
(goto-char (point-min))
(search-forward-regexp "^)")
(move-to-column 27 t)
(setq decipher-alphabet nil)
(let ((plain-char ?z))
(while (>= plain-char ?a)
(backward-char)
(push (cons plain-char (following-char)) decipher-alphabet)
(decf plain-char)))))