summaryrefslogtreecommitdiff
path: root/games/hack/hack.options.c
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>2004-01-01 16:02:51 +0000
committerjsm <jsm@NetBSD.org>2004-01-01 16:02:51 +0000
commitc35cdefd9018052cae00479e5a7b503457dfdacf (patch)
tree799c5cbcb213af02e2a0eb2c20544cb3a897ab5a /games/hack/hack.options.c
parent23e0e03d0011699bbeb5bf9fd1b67c55f8197af4 (diff)
Refer to 'O' rather than 'o' as command to set options. Bug reported
by Christian Garbs <debian@cgarbs.de> in Debian bug 191452.
Diffstat (limited to 'games/hack/hack.options.c')
-rw-r--r--games/hack/hack.options.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/games/hack/hack.options.c b/games/hack/hack.options.c
index 80168142186..ea55cb819af 100644
--- a/games/hack/hack.options.c
+++ b/games/hack/hack.options.c
@@ -1,4 +1,4 @@
-/* $NetBSD: hack.options.c,v 1.6 2003/04/02 18:36:39 jsm Exp $ */
+/* $NetBSD: hack.options.c,v 1.7 2004/01/01 16:02:51 jsm Exp $ */
/*
* Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -63,7 +63,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: hack.options.c,v 1.6 2003/04/02 18:36:39 jsm Exp $");
+__RCSID("$NetBSD: hack.options.c,v 1.7 2004/01/01 16:02:51 jsm Exp $");
#endif /* not lint */
#include <stdlib.h>
@@ -210,7 +210,7 @@ bad:
if (!strncmp(opts, "help", 4)) {
pline("%s%s%s",
"To set options use `HACKOPTIONS=\"<options>\"' in your environment, or ",
- "give the command 'o' followed by the line `<options>' while playing. ",
+ "give the command 'O' followed by the line `<options>' while playing. ",
"Here <options> is a list of <option>s separated by commas.");
pline("%s%s%s",
"Simple (boolean) options are rest_on_space, news, time, ",
@@ -225,7 +225,7 @@ bad:
return;
}
pline("Bad option: %s.", opts);
- pline("Type `o help<cr>' for help.");
+ pline("Type `O help<cr>' for help.");
return;
}
puts("Bad syntax in HACKOPTIONS.");