From xemacs-m  Wed Sep  3 11:01:24 1997
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id LAA06180
	for <xemacs-beta@xemacs.org>; Wed, 3 Sep 1997 11:01:22 -0500 (CDT)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.7/8.8.7) id JAA12613;
	Wed, 3 Sep 1997 09:05:12 -0700
Mail-Copies-To: never
To: xemacs-beta@xemacs.org
Subject: Re: 20.3b19 on SunOS 5.5.1 (compilation ok, packages/autoload blues)
References: <199709030911.LAA09918@rubens.esat.kuleuven.ac.be>
X-Face: `'%\i;ySOu]g?NlziJSk_$&@]KP`}~PEQPjZ5;nxSaDW_o$4+4%Ab]%Ifw3ZR;7TIT3,O,'
 @2{L;]ox6kc;$_5kU'n**9vFg-]eV~GbxSVCx|(s%uR[],*:^WKmC`B}(;|k9/m]gwt?&`t;^rfCJg
 khHH>pP1W\)xM0U@!FNDD72{3fDP$PkBhx^7Z?-WxH6DbFN:QOnT`llzW}VGdYv;n9lzljQvKTIBhQ
 YuV
X-Attribution: sb
From: SL Baur <steve@xemacs.org>
In-Reply-To: Maurizio Vitale's message of "Wed, 3 Sep 1997 11:11:58 +0200"
Mime-Version: 1.0 (generated by tm-edit 7.108)
Content-Type: text/plain; charset=US-ASCII
Date: 03 Sep 1997 09:05:11 -0700
Message-ID: <m2rab6fknc.fsf@altair.xemacs.org>
Lines: 61
X-Mailer: Gnus v5.4.65/XEmacs 20.3(beta20) - "Tirana"

Maurizio Vitale <Maurizio.Vitale@esat.kuleuven.ac.be> writes:

> tetris cannot be loaded from the menu (function tetris
> undefined).

Sorry about that.  You'll need to redump XEmacs after either patching
lisp/games/auto-autoloads.el (below) or doing `make autoloads'.

Index: lisp/games/tetris.el
===================================================================
RCS file: /usr/local/xemacs/xemacs-20.0/lisp/games/tetris.el,v
retrieving revision 1.2
diff -u -r1.2 tetris.el
--- tetris.el	1997/09/03 02:55:33	1.2
+++ tetris.el	1997/09/03 15:45:45
@@ -792,6 +792,7 @@
 
   (run-hooks 'tetris-mode-hook))
 
+;;;###autoload
 (defun tetris ()
   "Tetris
 

Index: lisp/games/auto-autoloads.el
===================================================================
RCS file: /usr/local/xemacs/xemacs-20.0/lisp/games/auto-autoloads.el,v
retrieving revision 1.2
diff -u -r1.2 auto-autoloads.el
--- auto-autoloads.el	1997/08/17 03:23:53	1.2
+++ auto-autoloads.el	1997/09/03 15:47:21
@@ -261,6 +261,29 @@
 
 ;;;***
 
+;;;### (autoloads (tetris) "tetris" "games/tetris.el")
+
+(autoload 'tetris "tetris" "\
+Tetris
+
+Shapes drop from the top of the screen, and the user has to move and
+rotate the shape to fit in with those at the bottom of the screen so
+as to form complete rows.
+
+tetris-mode keybindings:
+   \\<tetris-mode-map>
+\\[tetris-start-game]	Starts a new game of Tetris
+\\[tetris-end-game]	Terminates the current game
+\\[tetris-move-left]	Moves the shape one square to the left
+\\[tetris-move-right]	Moves the shape one square to the right
+\\[tetris-rotate-prev]	Rotates the shape clockwise
+\\[tetris-rotate-next]	Rotates the shape anticlockwise
+\\[tetris-move-bottom]	Drops the shape to the bottom of the playing area
+
+" t nil)
+
+;;;***
+
 ;;;### (autoloads (xmine-mode) "xmine" "games/xmine.el")
 
 (autoload 'xmine-mode "xmine" "\

