From: Pasi Kallinen Date: Sat, 4 Jun 2016 05:14:41 +0000 (+0300) Subject: Comment the limitation and reason X-Git-Tag: NetHack-3.6.1_RC01~703 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad9e3dcef91ed256d316610ca0f57e1acd6b8aac;p=nethack Comment the limitation and reason --- diff --git a/src/pager.c b/src/pager.c index 081bd190e..92c72787d 100644 --- a/src/pager.c +++ b/src/pager.c @@ -1060,6 +1060,8 @@ coord *click_cc; case '?': from_screen = FALSE; getlin("Specify what? (type the word)", out_str); + /* mungspaces prevents querying for a space glyph (eg. a ghost), + but players almost always use '/' instead to look up glyphs */ mungspaces(out_str); if (out_str[0] == '\0' || out_str[0] == '\033') return 0;