comment fix in display.c

A comment in front of unmap_object() was missing the end of a
sentence in the middle of a short paragraph.  That has been the case
as far back as 3.3.0.  I found the sentence's full text in 3.2.0
(without checking 3.2.[123]).  The rest of the paragraph got changed,
presumably at the same time as the missing part got lost.

While in there, change "any more" to "anymore".  According to a
dictionary, the one-word form is the more commonly usage.
This commit is contained in:
PatR
2023-01-01 00:21:51 -08:00
parent e1a2432233
commit 21b9506d3f

View File

@@ -1,4 +1,4 @@
/* NetHack 3.7 display.c $NHDT-Date: 1661295668 2022/08/23 23:01:08 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.192 $ */
/* NetHack 3.7 display.c $NHDT-Date: 1672561294 2023/01/01 08:21:34 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.200 $ */
/* Copyright (c) Dean Luick, with acknowledgements to Kevin Darcy */
/* and Dave Cohrs, 1990. */
/* NetHack may be freely redistributed. See license for details. */
@@ -364,11 +364,11 @@ unmap_invisible(coordxy x, coordxy y)
/*
* unmap_object()
*
* Remove something from the map when the hero realizes it's not there any
* more. Replace it with background or known trap, but not with any other
* If this is used for detection, a full screen update is imminent anyway;
* if this is used to get rid of an invisible monster notation, we might have
* to call newsym().
* Remove something from the map when the hero realizes it's not there
* anymore. Replace it with background or known trap, but not with
* any other remembered object. If this is used for detection, a full
* screen update is imminent anyway; if this is used to get rid of an
* invisible monster notation, we might have to call newsym().
*/
void
unmap_object(register coordxy x, register coordxy y)