2013-05-28 Glenn Morris <rgm@gnu.org>
+ * play/dunnet.el (byte-compile-warnings): Don't disable them all.
+ (dun-unix-verbs): Remove dun-zippy.
+ (dun-zippy): Remove function.
+
* emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
2013-05-27 Juri Linkov <juri@jurta.org>
-;;; dunnet.el --- text adventure for Emacs -*- byte-compile-warnings: nil -*-
+;;; dunnet.el --- text adventure for Emacs
;; Copyright (C) 1992-1993, 2001-2013 Free Software Foundation, Inc.
(setq dun-unix-verbs '((ls . dun-ls) (ftp . dun-ftp) (echo . dun-echo)
(exit . dun-uexit) (cd . dun-cd) (pwd . dun-pwd)
(rlogin . dun-rlogin) (uncompress . dun-uncompress)
- (cat . dun-cat) (zippy . dun-zippy)))
+ (cat . dun-cat)))
(setq dun-dos-verbs '((dir . dun-dos-dir) (type . dun-dos-type)
(exit . dun-dos-exit) (command . dun-dos-spawn)
(dun-mprincl "Ascii files only.")
(dun-mprincl "File not found."))))))))
-(defun dun-zippy (args)
- (dun-mprincl (yow)))
-
(defun dun-rlogin-endgame ()
(if (not (= (dun-score nil) 90))
(dun-mprincl
(provide 'dunnet)
;;; dunnet.el ends here
+
+;; Local Variables:
+;; byte-compile-warnings: (not free-vars lexical)
+;; End: