summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwiz <wiz@NetBSD.org>2001-06-19 13:42:07 +0000
committerwiz <wiz@NetBSD.org>2001-06-19 13:42:07 +0000
commita442d469d2d5f4802786b2ea3b1451e32f62f97a (patch)
treee6bfc99346e45c5ebf17f14b2ccdf6c153c65253
parent5225044c727e25e86ce901c1283236694fc7577b (diff)
downloadbsdgames-darwin-a442d469d2d5f4802786b2ea3b1451e32f62f97a.tar.gz
bsdgames-darwin-a442d469d2d5f4802786b2ea3b1451e32f62f97a.tar.zst
bsdgames-darwin-a442d469d2d5f4802786b2ea3b1451e32f62f97a.zip
`existent', not `existant'
-rw-r--r--atc/list.c6
-rw-r--r--battlestar/parse.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/atc/list.c b/atc/list.c
index a8bfed02..ca17e103 100644
--- a/atc/list.c
+++ b/atc/list.c
@@ -1,4 +1,4 @@
-/* $NetBSD: list.c,v 1.4 1997/10/10 02:07:23 lukem Exp $ */
+/* $NetBSD: list.c,v 1.5 2001/06/19 13:42:08 wiz Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -50,7 +50,7 @@
#if 0
static char sccsid[] = "@(#)list.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: list.c,v 1.4 1997/10/10 02:07:23 lukem Exp $");
+__RCSID("$NetBSD: list.c,v 1.5 2001/06/19 13:42:08 wiz Exp $");
#endif
#endif /* not lint */
@@ -107,7 +107,7 @@ delete(l, p)
PLANE *p;
{
if (l->head == NULL)
- loser(p, "deleted a non-existant plane! Get help!");
+ loser(p, "deleted a non-existent plane! Get help!");
if (l->head == p && l->tail == p)
l->head = l->tail = NULL;
diff --git a/battlestar/parse.c b/battlestar/parse.c
index ab19dbb7..44703665 100644
--- a/battlestar/parse.c
+++ b/battlestar/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.11 2000/09/24 14:11:09 jsm Exp $ */
+/* $NetBSD: parse.c,v 1.12 2001/06/19 13:42:09 wiz Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)parse.c 8.2 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: parse.c,v 1.11 2000/09/24 14:11:09 jsm Exp $");
+__RCSID("$NetBSD: parse.c,v 1.12 2001/06/19 13:42:09 wiz Exp $");
#endif
#endif /* not lint */
@@ -155,7 +155,7 @@ parse()
/* If there is a sequence (NOUN | OBJECT) AND EVERYTHING
* then move all the EVERYTHINGs to the beginning, since that's where
* they're expected. We can't get rid of the NOUNs and OBJECTs in
- * case they aren't in EVERYTHING (i.e. not here or nonexistant).
+ * case they aren't in EVERYTHING (i.e. not here or nonexistent).
*/
flag = 1;
while (flag) {