summaryrefslogtreecommitdiffstats
path: root/battlestar
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>2000-09-25 14:06:20 +0000
committerjsm <jsm@NetBSD.org>2000-09-25 14:06:20 +0000
commit8c9fde9e88ab1979b6e44b73721761d5a3ff5236 (patch)
tree0846a1412de0d96537e71705fd18f155add7c027 /battlestar
parent02b9eddaeb98aadb0d7a84368b010689eaa3cb65 (diff)
downloadbsdgames-darwin-8c9fde9e88ab1979b6e44b73721761d5a3ff5236.tar.gz
bsdgames-darwin-8c9fde9e88ab1979b6e44b73721761d5a3ff5236.tar.zst
bsdgames-darwin-8c9fde9e88ab1979b6e44b73721761d5a3ff5236.zip
Remove excess blank lines. From OpenBSD.
Diffstat (limited to 'battlestar')
-rw-r--r--battlestar/cypher.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/battlestar/cypher.c b/battlestar/cypher.c
index e6853e44..a0642aec 100644
--- a/battlestar/cypher.c
+++ b/battlestar/cypher.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cypher.c,v 1.19 2000/09/24 14:42:18 jsm Exp $ */
+/* $NetBSD: cypher.c,v 1.20 2000/09/25 14:06:20 jsm Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)cypher.c 8.2 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: cypher.c,v 1.19 2000/09/24 14:42:18 jsm Exp $");
+__RCSID("$NetBSD: cypher.c,v 1.20 2000/09/25 14:06:20 jsm Exp $");
#endif
#endif /* not lint */
@@ -168,7 +168,6 @@ cypher()
break;
case DROP:
-
if (wordnumber < wordcount && wordvalue[wordnumber + 1] == EVERYTHING) {
int things;
things = 0;
@@ -186,7 +185,6 @@ cypher()
drop("Dropped");
break;
-
case KICK:
case THROW:
if (wordnumber < wordcount && wordvalue[wordnumber + 1] == EVERYTHING) {
@@ -224,9 +222,7 @@ cypher()
takeoff();
break;
-
case DRAW:
-
if (wordnumber < wordcount && wordvalue[wordnumber + 1] == EVERYTHING) {
int things;
things = 0;
@@ -243,9 +239,7 @@ cypher()
draw();
break;
-
case PUTON:
-
if (wordnumber < wordcount && wordvalue[wordnumber + 1] == EVERYTHING) {
int things;
things = 0;
@@ -263,7 +257,6 @@ cypher()
break;
case WEARIT:
-
if (wordnumber < wordcount && wordvalue[wordnumber + 1] == EVERYTHING) {
int things;
things = 0;
@@ -280,9 +273,7 @@ cypher()
wearit();
break;
-
case EAT:
-
if (wordnumber < wordcount && wordvalue[wordnumber + 1] == EVERYTHING) {
int things;
things = 0;
@@ -299,12 +290,10 @@ cypher()
eat();
break;
-
case PUT:
put();
break;
-
case INVEN:
if (ucard(inven)) {
puts("You are holding:\n");
@@ -550,7 +539,6 @@ cypher()
return (-1);
break;
-
}
if (wordnumber < wordcount && *words[wordnumber++] == ',')
continue;