From 3cae32390d1d88a67cf68274863ce2b3861095ac Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Fri, 3 Jan 2020 12:08:27 +0100 Subject: [PATCH] display: show the cursor during suspension also when built with Slang This fixes https://savannah.gnu.org/bugs/?57517. Bug existed since version 2.9.0. --- src/nano.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nano.c b/src/nano.c index be1626a1..34eafe29 100644 --- a/src/nano.c +++ b/src/nano.c @@ -1213,6 +1213,7 @@ RETSIGTYPE do_suspend(int signal) /* Move the cursor to the last line of the screen. */ move(LINES - 1, 0); + curs_set(1); endwin(); /* Display our helpful message. */ -- 2.24.1