commit 3cae32390d1d88a67cf68274863ce2b3861095ac
parent 1be0285832f361e8203e02f91c429e240e28d8ee
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Fri, 3 Jan 2020 12:08:27 +0100
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.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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. */