Correct spelling "dont" to "don't". From OpenBSD.

This commit is contained in:
jsm 2000-09-24 09:46:57 +00:00
parent 44c05578b0
commit ac1f171d5b
3 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: com2.c,v 1.16 2000/09/23 19:45:07 jsm Exp $ */ /* $NetBSD: com2.c,v 1.17 2000/09/24 09:46:57 jsm Exp $ */
/* /*
* Copyright (c) 1983, 1993 * Copyright (c) 1983, 1993
@ -38,7 +38,7 @@
#if 0 #if 0
static char sccsid[] = "@(#)com2.c 8.2 (Berkeley) 4/28/95"; static char sccsid[] = "@(#)com2.c 8.2 (Berkeley) 4/28/95";
#else #else
__RCSID("$NetBSD: com2.c,v 1.16 2000/09/23 19:45:07 jsm Exp $"); __RCSID("$NetBSD: com2.c,v 1.17 2000/09/24 09:46:57 jsm Exp $");
#endif #endif
#endif /* not lint */ #endif /* not lint */
@ -227,7 +227,7 @@ murder()
if (wintime) if (wintime)
live(); live();
} else } else
puts("I dont see her anywhere."); puts("I don't see her anywhere.");
break; break;
case TIMER: case TIMER:
if (testbit(location[position].objects, TIMER)) { if (testbit(location[position].objects, TIMER)) {

View File

@ -1,4 +1,4 @@
/* $NetBSD: com3.c,v 1.10 2000/09/23 19:23:58 jsm Exp $ */ /* $NetBSD: com3.c,v 1.11 2000/09/24 09:46:57 jsm Exp $ */
/* /*
* Copyright (c) 1983, 1993 * Copyright (c) 1983, 1993
@ -38,7 +38,7 @@
#if 0 #if 0
static char sccsid[] = "@(#)com3.c 8.2 (Berkeley) 4/28/95"; static char sccsid[] = "@(#)com3.c 8.2 (Berkeley) 4/28/95";
#else #else
__RCSID("$NetBSD: com3.c,v 1.10 2000/09/23 19:23:58 jsm Exp $"); __RCSID("$NetBSD: com3.c,v 1.11 2000/09/24 09:46:57 jsm Exp $");
#endif #endif
#endif /* not lint */ #endif /* not lint */
@ -211,7 +211,7 @@ shoot()
if (value == BOMB) if (value == BOMB)
die(); die();
} else } else
printf("I dont see any %s around here.\n", objsht[value]); printf("I don't see any %s around here.\n", objsht[value]);
if (wordnumber < wordcount - 1 && wordvalue[++wordnumber] == AND) if (wordnumber < wordcount - 1 && wordvalue[++wordnumber] == AND)
wordnumber++; wordnumber++;
else else

View File

@ -1,4 +1,4 @@
/* $NetBSD: com4.c,v 1.16 2000/09/24 09:46:03 jsm Exp $ */ /* $NetBSD: com4.c,v 1.17 2000/09/24 09:46:57 jsm Exp $ */
/* /*
* Copyright (c) 1983, 1993 * Copyright (c) 1983, 1993
@ -38,7 +38,7 @@
#if 0 #if 0
static char sccsid[] = "@(#)com4.c 8.2 (Berkeley) 4/28/95"; static char sccsid[] = "@(#)com4.c 8.2 (Berkeley) 4/28/95";
#else #else
__RCSID("$NetBSD: com4.c,v 1.16 2000/09/24 09:46:03 jsm Exp $"); __RCSID("$NetBSD: com4.c,v 1.17 2000/09/24 09:46:57 jsm Exp $");
#endif #endif
#endif /* not lint */ #endif /* not lint */
@ -79,7 +79,7 @@ take(from)
(is_plural_object(value) ? " " : " a "), (is_plural_object(value) ? " " : " a "),
objsht[value]); objsht[value]);
else if (!testbit(from, value)) else if (!testbit(from, value))
printf("I dont see any %s around here.\n", objsht[value]); printf("I don't see any %s around here.\n", objsht[value]);
else if (!heavy) else if (!heavy)
printf("The %s %s too heavy.\n", objsht[value], printf("The %s %s too heavy.\n", objsht[value],
(is_plural_object(value) ? "are" : "is")); (is_plural_object(value) ? "are" : "is"));