From 5828d17eef4dcad18d037f48b75d63c3b0d6a371 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sat, 25 Apr 2015 15:19:13 +0300 Subject: [PATCH] Show only the short automatic glyph description When you turn on the automatic description of a glyph under cursor, we want to show the short description of what glyph it actually is. The long full description of all possibilities is far too long, so may cause more-prompts, and is awkward for blind players. --- src/do_name.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/do_name.c b/src/do_name.c index b89374804..bd1dc6f49 100644 --- a/src/do_name.c +++ b/src/do_name.c @@ -115,8 +115,7 @@ const char *goal; cc.x = cx; cc.y = cy; if (do_screen_description(cc, TRUE, sym, tmpbuf, &firstmatch)) { - /* there may be an encoded glyph */ - putmixed(WIN_MESSAGE, 0, tmpbuf); + pline1(firstmatch); curs(WIN_MAP, cx, cy); flush_screen(0); }