diff options
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/gomoku.el | 5 | ||||
-rw-r--r-- | lisp/play/life.el | 5 | ||||
-rw-r--r-- | lisp/play/yow.el | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/lisp/play/gomoku.el b/lisp/play/gomoku.el index c40c108895f..a3783e63c5e 100644 --- a/lisp/play/gomoku.el +++ b/lisp/play/gomoku.el @@ -23,9 +23,6 @@ ;;; with precious advices from J.-F. Rit. ;;; This has been tested with GNU Emacs 18.50. -(provide 'gomoku) - - ;; RULES: ;; ;; Gomoku is a game played between two players on a rectangular board. Each @@ -1158,4 +1155,6 @@ If the game is finished, this command requests for another game." (gomoku-move-down) (gomoku-move-left)) +(provide 'gomoku) + diff --git a/lisp/play/life.el b/lisp/play/life.el index 059bf350fd4..0aceb065609 100644 --- a/lisp/play/life.el +++ b/lisp/play/life.el @@ -18,8 +18,6 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -(provide 'life) - (defconst life-patterns [("@@@" " @@" "@@@") ("@@@ @@@" "@@ @@ " "@@@ @@@") @@ -272,3 +270,6 @@ generations (this defaults to 1)." (put 'life-extinct 'error-conditions '(life-extinct quit)) (put 'life-extinct 'error-message "All life has perished") + +(provide 'life) + diff --git a/lisp/play/yow.el b/lisp/play/yow.el index a4d33d3609f..0f1c51b23fe 100644 --- a/lisp/play/yow.el +++ b/lisp/play/yow.el @@ -16,8 +16,6 @@ ;; along with GNU Emacs; see the file COPYING. If not, write to ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -(provide 'yow) - ; Randomize the seed in the random number generator. (random t) @@ -86,3 +84,5 @@ (doctor-ret-or-read 1) (doctor-ret-or-read 1))) +(provide 'yow) + |