comparison lisp/play/gomoku.el @ 111262:029e4783cbae

Merge changes from emacs-23 branch
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 31 Oct 2010 10:40:01 -0400
parents 1a6d2311d8d5 516f3d80dac6
children be0bea620615
comparison
equal deleted inserted replaced
111250:707dcc885f00 111262:029e4783cbae
1 ;;; gomoku.el --- Gomoku game between you and Emacs 1 ;;; gomoku.el --- Gomoku game between you and Emacs
2 2
3 ;; Copyright (C) 1988, 1994, 1996, 2001, 2002, 2003, 2004, 3 ;; Copyright (C) 1988, 1994, 1996, 2001, 2002, 2003, 2004, 2005, 2006,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 4 ;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 5
6 ;; Author: Philippe Schnoebelen <phs@lsv.ens-cachan.fr> 6 ;; Author: Philippe Schnoebelen <phs@lsv.ens-cachan.fr>
7 ;; Maintainer: FSF 7 ;; Maintainer: FSF
8 ;; Adapted-By: ESR, Daniel Pfeiffer <occitan@esperanto.org> 8 ;; Adapted-By: ESR, Daniel Pfeiffer <occitan@esperanto.org>
9 ;; Keywords: games 9 ;; Keywords: games
193 193
194 Other useful commands:\n 194 Other useful commands:\n
195 \\{gomoku-mode-map}" 195 \\{gomoku-mode-map}"
196 (gomoku-display-statistics) 196 (gomoku-display-statistics)
197 (make-local-variable 'font-lock-defaults) 197 (make-local-variable 'font-lock-defaults)
198 (setq font-lock-defaults '(gomoku-font-lock-keywords t)) 198 (setq font-lock-defaults '(gomoku-font-lock-keywords t)
199 (toggle-read-only t)) 199 buffer-read-only t))
200 200
201 ;;; 201 ;;;
202 ;;; THE BOARD. 202 ;;; THE BOARD.
203 ;;; 203 ;;;
204 204
1204 1204
1205 (random t) 1205 (random t)
1206 1206
1207 (provide 'gomoku) 1207 (provide 'gomoku)
1208 1208
1209 ;; arch-tag: b1b8205e-77fc-4597-b373-3ea2c04311eb
1210 ;;; gomoku.el ends here 1209 ;;; gomoku.el ends here