summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-02-11 19:27:29 +0000
committerRichard M. Stallman <rms@gnu.org>1996-02-11 19:27:29 +0000
commitdccfc6e79311e5549b23139d35b37e986838a147 (patch)
treeaab262c2ca12cc1f188ab46dc465a62042eb685a
parentb11b8d787d902c292926adc1a37b1a4d74777238 (diff)
downloademacs-dccfc6e79311e5549b23139d35b37e986838a147.tar.gz
Load cl only when compiling.
-rw-r--r--lisp/play/decipher.el14
1 files changed, 3 insertions, 11 deletions
diff --git a/lisp/play/decipher.el b/lisp/play/decipher.el
index a83c2150c41..f911a5631ca 100644
--- a/lisp/play/decipher.el
+++ b/lisp/play/decipher.el
@@ -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 <ac608@yfn.ysu.edu>
-;; 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.