curses: init old_mode to 1 (normal visible cursor)

PR bin/58090: Ctrl-Z, fg makes blinking cursor in vi
ok blymn@
This commit is contained in:
uwe 2024-05-27 14:30:43 +00:00
parent 7d8e907f96
commit 463a9e2dfe
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: screen.c,v 1.38 2024/05/17 23:32:50 uwe Exp $ */
/* $NetBSD: screen.c,v 1.39 2024/05/27 14:30:43 uwe Exp $ */
/*
* Copyright (c) 1981, 1993, 1994
@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)screen.c 8.2 (blymn) 11/27/2001";
#else
__RCSID("$NetBSD: screen.c,v 1.38 2024/05/17 23:32:50 uwe Exp $");
__RCSID("$NetBSD: screen.c,v 1.39 2024/05/27 14:30:43 uwe Exp $");
#endif
#endif /* not lint */
@ -156,7 +156,7 @@ newterm(const char *type, FILE *outfd, FILE *infd)
new_screen->nca = A_NORMAL;
new_screen->color_type = COLOR_NONE;
new_screen->COLOR_PAIRS = 0;
new_screen->old_mode = 2;
new_screen->old_mode = 1;
new_screen->stdbuf = NULL;
new_screen->stdscr = NULL;
new_screen->curscr = NULL;