Michael Thomas 928501e
--- tetris/tetris.6.in.orig	2007-04-30 22:07:33.000000000 -0700
Michael Thomas 928501e
+++ tetris/tetris.6.in	2007-04-30 22:12:40.000000000 -0700
Michael Thomas 928501e
@@ -33,11 +33,11 @@
Michael Thomas 928501e
 .\"	@(#)tetris.6	8.1 (Berkeley) 5/31/93
Michael Thomas 928501e
 .\"
Michael Thomas 928501e
 .Dd May 31, 1993
Michael Thomas 928501e
-.Dt TETRIS 6
Michael Thomas 928501e
+.Dt BSD-FBG 6
Michael Thomas 928501e
 .Os
Michael Thomas 928501e
 .Sh NAME
Michael Thomas 928501e
-.Nm tetris
Michael Thomas 928501e
-.Nd the game of tetris
Michael Thomas 928501e
+.Nm bsd-fbg
Michael Thomas 928501e
+.Nd a falling block game
Michael Thomas 928501e
 .Sh SYNOPSIS
Michael Thomas 928501e
 .Nm
Michael Thomas 928501e
 .Op Fl ps
Michael Thomas 928501e
@@ -46,7 +46,7 @@
Michael Thomas 928501e
 .Sh DESCRIPTION
Michael Thomas 928501e
 The
Michael Thomas 928501e
 .Nm
Michael Thomas 928501e
-command runs display-based game which must be played on a CRT terminal.
Michael Thomas 928501e
+command runs a display-based game which must be played on a CRT terminal.
Michael Thomas 928501e
 The object is to fit the shapes together forming complete rows,
Michael Thomas 928501e
 which then vanish.
Michael Thomas 928501e
 When the shapes fill up to the top, the game ends.
Michael Thomas 928501e
@@ -83,7 +83,7 @@
Michael Thomas 928501e
 space or tab characters from the shell.
Michael Thomas 928501e
 For example:
Michael Thomas 928501e
 .sp
Michael Thomas 928501e
-.Dl "tetris -l 2 -k 'jkl pq'"
Michael Thomas 928501e
+.Dl "bsd-fbg -l 2 -k 'jkl pq'"
Michael Thomas 928501e
 .sp
Michael Thomas 928501e
 will play the default games, i.e. level 2 and with the default
Michael Thomas 928501e
 control keys.
Michael Thomas 928501e
--- tetris/scores.c.orig	2007-04-30 22:15:16.000000000 -0700
Michael Thomas 928501e
+++ tetris/scores.c	2007-04-30 22:15:23.000000000 -0700
Michael Thomas 928501e
@@ -367,7 +367,7 @@
Michael Thomas 928501e
 
Michael Thomas 928501e
 	if (!gotscores)
Michael Thomas 928501e
 		getscores(NULL);
Michael Thomas 928501e
-	(void)printf("\n\t\t\t    Tetris High Scores\n");
Michael Thomas 928501e
+	(void)printf("\n\t\t\t    High Scores\n");
Michael Thomas 928501e
 
Michael Thomas 928501e
 	/*
Michael Thomas 928501e
 	 * If level == 0, the person has not played a game but just asked for
Michael Thomas 928501e
--- tetris/tetris.c.orig	2007-04-30 22:16:20.000000000 -0700
Michael Thomas 928501e
+++ tetris/tetris.c	2007-04-30 22:16:37.000000000 -0700
Michael Thomas 928501e
@@ -337,6 +337,6 @@
Michael Thomas 928501e
 void
Michael Thomas 928501e
 usage()
Michael Thomas 928501e
 {
Michael Thomas 928501e
-	(void)fprintf(stderr, "usage: tetris-bsd [-ps] [-k keys] [-l level]\n");
Michael Thomas 928501e
+	(void)fprintf(stderr, "usage: bsd-fbg [-ps] [-k keys] [-l level]\n");
Michael Thomas 928501e
 	exit(1);
Michael Thomas 928501e
 }