]> granicus.if.org Git - nethack/commitdiff
doc bits
authornethack.rankin <nethack.rankin>
Thu, 28 Oct 2004 01:48:52 +0000 (01:48 +0000)
committernethack.rankin <nethack.rankin>
Thu, 28 Oct 2004 01:48:52 +0000 (01:48 +0000)
     Per <Someone>'s request, make the game's description of the ``#enhance''
command be the same as in the Guidebook by mentioning spell skills.
Combining weapons plural with spell singular isn't right, but I'm not
sure which way to change that so am leaving it alone.  On the other hand,
the poor grammar used to describe the ``#conduct'' command is easy to fix.

dat/hh
doc/Guidebook.mn
doc/Guidebook.tex
src/cmd.c

diff --git a/dat/hh b/dat/hh
index e61f56405252d9a197e2b5e97ba1efc888900ad1..d917640d2141c516aecc4bc9ed7dca15deb489f6 100644 (file)
--- a/dat/hh
+++ b/dat/hh
@@ -83,12 +83,12 @@ _       travel  move via a shortest-path algorithm to a point on the map
 Keyboards that have a meta key can also use these extended commands
 via the meta modifier instead of the # prefix:
 
-M-?             Display extended command help (if the platform allows this)
+M-?             display extended command help (if the platform allows this)
 M-2     twoweapon toggle two-weapon combat (unless number_pad is enabled)
 M-a     adjust  adjust inventory letters
 M-c     chat    talk to someone
 M-d     dip     dip an object into something
-M-e     enhance advance or check weapons skills
+M-e     enhance advance or check weapons or spell skills
 M-f     force   force a lock
 M-i     invoke  invoke an object's special powers
 M-j     jump    jump to another location
index 6b66b8cfc833370518340227dbede2922ed022eb..b378b4de6b11d1d48c7f10b68cc000b5b8d37765 100644 (file)
@@ -678,7 +678,7 @@ option is ``on'').
 .lp #chat
 Talk to someone.
 .lp #conduct
-List which challenges you have adhered to.  See the section below entitled
+List voluntary challenges you have maintained.  See the section below entitled
 ``Conduct'' for details.
 .lp #dip
 Dip an object into something.
index 38546e4cbaf6d9ddc6ae28b9a0497f0d363a2acb..b0a7cbc7fa4075133022b3f3f091583d92a4960d 100644 (file)
@@ -27,7 +27,7 @@
 \begin{document}
 %
 % input file: guidebook.mn
-% $Revision: 1.83 $ $Date: 2003/12/03 02:58:14 $
+% $Revision: 1.84 $ $Date: 2004/03/13 01:27:21 $
 %
 %.ds h0 "
 %.ds h1 %.ds h2 \%
@@ -899,7 +899,7 @@ option is ``on'').
 Talk to someone.
 %.lp
 \item[\tb{\#conduct}]
-List which challenges you have adhered to.  See the section below entitled
+List voluntary challenges you have maintained.  See the section below entitled
 ``Conduct'' for details.
 %.lp
 \item[\tb{\#dip}]
index 301fb87c99691c964a660e06934f50074399a0e6..1df60d8efad2a101922ec0036e1ca135ed6ec806 100644 (file)
--- a/src/cmd.c
+++ b/src/cmd.c
@@ -1,4 +1,4 @@
-/*     SCCS Id: @(#)cmd.c      3.4     2004/01/09      */
+/*     SCCS Id: @(#)cmd.c      3.4     2004/10/27      */
 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
 /* NetHack may be freely redistributed.  See license for details. */
 
@@ -1545,10 +1545,11 @@ static const struct func_tab cmdlist[] = {
 struct ext_func_tab extcmdlist[] = {
        {"adjust", "adjust inventory letters", doorganize, TRUE},
        {"chat", "talk to someone", dotalk, TRUE},      /* converse? */
-       {"conduct", "list which challenges you have adhered to", doconduct, TRUE},
+       {"conduct", "list voluntary challenges you have maintained",
+                                               doconduct, TRUE},
        {"dip", "dip an object into something", dodip, FALSE},
-       {"enhance", "advance or check weapons skills", enhance_weapon_skill,
-                                                       TRUE},
+       {"enhance", "advance or check weapons and spell skills",
+                                               enhance_weapon_skill, TRUE},
        {"force", "force a lock", doforce, FALSE},
        {"invoke", "invoke an object's powers", doinvoke, TRUE},
        {"jump", "jump to a location", dojump, FALSE},