From b6be8e8af1005cc557f6da73f5e8faa71ef38956 Mon Sep 17 00:00:00 2001 From: cohrs Date: Sun, 14 Apr 2002 21:59:53 +0000 Subject: [PATCH] stale pickup_burden message in tty after - tty interface left a stale prompt on the topl, clear it --- doc/fixes34.1 | 1 + src/pickup.c | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/fixes34.1 b/doc/fixes34.1 index e51a0aa84..06a34c651 100644 --- a/doc/fixes34.1 +++ b/doc/fixes34.1 @@ -89,6 +89,7 @@ X11: getlin dialog got steadily narrower each time it was used unix: install recover command into GAMEDIR by default tty: correctly handle an empty TERM environment variable tty: don't lose messages when ESC has canceled their display +tty: clear topl after pickup_burden prompt General New Features diff --git a/src/pickup.c b/src/pickup.c index aedf71c98..27fff2d97 100644 --- a/src/pickup.c +++ b/src/pickup.c @@ -1122,6 +1122,7 @@ boolean telekinesis; case 'n': result = 0; break; default: break; /* 'y' => result == 1 */ } + clear_nhwindow(WIN_MESSAGE); } } }