NetBSD-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: bin/58090: Ctrl-Z, fg makes blinking cursor in vi
The following reply was made to PR bin/58090; it has been noted by GNATS.
From: Valery Ushakov <uwe%stderr.spb.ru@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc:
Subject: Re: bin/58090: Ctrl-Z, fg makes blinking cursor in vi
Date: Sat, 30 Mar 2024 04:27:20 +0300
A minimized reproducer distilled from cl_suspend() is
#include <curses.h>
int
main(void)
{
initscr();
getch();
endwin();
refresh(); // <- makes it blink
getch();
endwin();
return 0;
}
-uwe
Home |
Main Index |
Thread Index |
Old Index