comparison lisp/play/snake.el @ 38425:c6e12c6b1498

Some fixes to follow coding conventions.
author Pavel Janík <Pavel@Janik.cz>
date Mon, 16 Jul 2001 09:10:19 +0000
parents 2f5370af8354
children 54c9c11abe9e
comparison
equal deleted inserted replaced
38424:43ed08d143a9 38425:c6e12c6b1498
1 ;;; snake.el -- Implementation of Snake for Emacs 1 ;;; snake.el --- implementation of Snake for Emacs
2 2
3 ;; Copyright (C) 1997 Free Software Foundation, Inc. 3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
4 4
5 ;; Author: Glynn Clements <glynn@sensei.co.uk> 5 ;; Author: Glynn Clements <glynn@sensei.co.uk>
6 ;; Created: 1997-09-10 6 ;; Created: 1997-09-10
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, 23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA. 24 ;; Boston, MA 02111-1307, USA.
25 25
26 ;;; Commentary: 26 ;;; Commentary:
27
28 ;;; Code:
27 29
28 (eval-when-compile 30 (eval-when-compile
29 (require 'cl)) 31 (require 'cl))
30 32
31 (require 'gamegrid) 33 (require 'gamegrid)