# HG changeset patch # User Richard M. Stallman # Date 824066849 0 # Node ID bd43252760b4d5b4c19a9d9f29065003b092c550 # Parent ef07b51330af3291254549561189a7f639cd066a Load cl only when compiling. diff -r ef07b51330af -r bd43252760b4 lisp/play/decipher.el --- a/lisp/play/decipher.el Sun Feb 11 19:26:25 1996 +0000 +++ b/lisp/play/decipher.el Sun Feb 11 19:27:29 1996 +0000 @@ -1,10 +1,8 @@ ;;; decipher.el --- Cryptanalyze monoalphabetic substitution ciphers ;; -;; Copyright (C) 1994 Free Software Foundation, Inc. +;; Copyright (C) 1995, 1996 Free Software Foundation, Inc. ;; ;; Author: Christopher J. Madsen -;; Created: 27 Nov 1994 -;; Version: 1.18 (1996/01/19 22:11:55) ;; Keywords: games ;; ;; This file is part of GNU Emacs. @@ -23,13 +21,6 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -;;; Installation: -;; -;; Put decipher.el somewhere in your load-path. Byte-compile it if you -;; wish. Then put the following in your .emacs file: -;; (autoload 'decipher "decipher" nil t) -;; (autoload 'decipher-mode "decipher" nil t) - ;;; Quick Start: ;; ;; To decipher a message, type or load it into a buffer and type @@ -88,7 +79,8 @@ ;;; Variables: ;;;=================================================================== -(require 'cl) +(eval-when-compile + (require 'cl)) (defvar decipher-force-uppercase t "*Non-nil means to convert ciphertext to uppercase.