diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-06-22 18:57:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-06-22 18:57:55 +0000 |
commit | 896546cd9ba8e82956662329b77becb0366a1e73 (patch) | |
tree | fb9f48d5363d164ad5c72a182dbe1e5a78322c6c /lisp/play | |
parent | 43c89a968ed6f1972a6ff075846622ade5bc7cf9 (diff) | |
download | emacs-896546cd9ba8e82956662329b77becb0366a1e73.tar.gz |
Add provide call.
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/blackbox.el | 2 | ||||
-rw-r--r-- | lisp/play/dissociate.el | 2 | ||||
-rw-r--r-- | lisp/play/doctor.el | 2 | ||||
-rw-r--r-- | lisp/play/dunnet.el | 3 | ||||
-rw-r--r-- | lisp/play/mpuz.el | 2 | ||||
-rw-r--r-- | lisp/play/spook.el | 2 | ||||
-rw-r--r-- | lisp/play/studly.el | 2 |
7 files changed, 15 insertions, 0 deletions
diff --git a/lisp/play/blackbox.el b/lisp/play/blackbox.el index 8de46c2f025..0786c90d6b6 100644 --- a/lisp/play/blackbox.el +++ b/lisp/play/blackbox.el @@ -418,4 +418,6 @@ a reflection." ((equal item (car list)) (cdr list)) (t (cons (car list) (bb-delete item (cdr list)))))) +(provide 'blackbox) + ;;; blackbox.el ends here diff --git a/lisp/play/dissociate.el b/lisp/play/dissociate.el index 93a9f9e79ab..fab3ed92559 100644 --- a/lisp/play/dissociate.el +++ b/lisp/play/dissociate.el @@ -98,4 +98,6 @@ Default is 2." (funcall search-function overlap opoint t)))))) (sit-for 0)))) +(provide 'dissociate) + ;;; dissociate.el ends here diff --git a/lisp/play/doctor.el b/lisp/play/doctor.el index 98a12bf451a..2c65fb8caa9 100644 --- a/lisp/play/doctor.el +++ b/lisp/play/doctor.el @@ -1614,4 +1614,6 @@ Hack on previous word, setting global variable OWNER to correct result." (insert "Mein fuehrer!!\n") (doctor-read-print)) +(provide 'doctor) + ;;; doctor.el ends here diff --git a/lisp/play/dunnet.el b/lisp/play/dunnet.el index 26a57133f26..283c884780a 100644 --- a/lisp/play/dunnet.el +++ b/lisp/play/dunnet.el @@ -3361,4 +3361,7 @@ File not found"))) (setq dun-batch-mode t) (dun-batch-loop)) +(provide 'dunnet) + +;; dunnet.el ends here diff --git a/lisp/play/mpuz.el b/lisp/play/mpuz.el index a0356722124..476f0592630 100644 --- a/lisp/play/mpuz.el +++ b/lisp/play/mpuz.el @@ -441,4 +441,6 @@ You may abort a game by typing \\<mpuz-mode-map>\\[mpuz-offer-abort]." (setq list (cons digit list)))) (mapcar 'mpuz-correct-guess list))) +(provide 'mpuz) + ;;; mpuz.el ends here diff --git a/lisp/play/spook.el b/lisp/play/spook.el index cf6685af51b..8d8f8229d5b 100644 --- a/lisp/play/spook.el +++ b/lisp/play/spook.el @@ -66,4 +66,6 @@ ;; cleaned up, generalized, gratuitously broken by esr, and now resides in ;; cookie1.el. +(provide 'spook) + ;;; spook.el ends here diff --git a/lisp/play/studly.el b/lisp/play/studly.el index b5aafcab09a..a94eee5ecd3 100644 --- a/lisp/play/studly.el +++ b/lisp/play/studly.el @@ -60,4 +60,6 @@ (interactive "*") (studlify-region (point-min) (point-max))) +(provide 'studly) + ;;; studly.el ends here |