fix github issue #200 - docs for 'strange object'
Fixes #200 The Guidebook claims that there's no symbol for 'S_strange_object' which is literally true, but there is one for S_strange_obj. It has been in place longer than the paragraph claiming that there's no way to customize that symbol. I'm not sure why variant spelling was used. Also, files.c doesn't use loadsyms[], it calls a routine which returns a pointer to a specific element in that array.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* NetHack 3.6 files.c $NHDT-Date: 1559670605 2019/06/04 17:50:05 $ $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.250 $ */
|
||||
/* NetHack 3.6 files.c $NHDT-Date: 1562719337 2019/07/10 00:42:17 $ $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.252 $ */
|
||||
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
|
||||
/*-Copyright (c) Derek S. Ray, 2015. */
|
||||
/* NetHack may be freely redistributed. See license for details. */
|
||||
@@ -3140,7 +3140,6 @@ boolean FDECL((*proc), (char *));
|
||||
}
|
||||
|
||||
extern struct symsetentry *symset_list; /* options.c */
|
||||
extern struct symparse loadsyms[]; /* drawing.c */
|
||||
extern const char *known_handling[]; /* drawing.c */
|
||||
extern const char *known_restrictions[]; /* drawing.c */
|
||||
static int symset_count = 0; /* for pick-list building only */
|
||||
@@ -3213,7 +3212,7 @@ char *buf;
|
||||
int which_set;
|
||||
{
|
||||
int val, i;
|
||||
struct symparse *symp = (struct symparse *) 0;
|
||||
struct symparse *symp;
|
||||
char *bufp, *commentp, *altp;
|
||||
|
||||
/* convert each instance of whitespace (tabs, consecutive spaces)
|
||||
|
||||
Reference in New Issue
Block a user