Re: [Vimprobable-users] RFC: Added support for buffers
Vimprobable is a lean web browser optimised for full keyboard control
Brought to you by:
hanness
From: Daniel C. <dan...@gm...> - 2015-02-19 20:39:08
|
Matthew Carter <m...@ah...> wrote: > For whatever reason, printf output seems to be captured by the GTK main > loop until it terminates (hence why I chose stderr and not stdout for > this quickie approach to a buffer list available externally). The stdout is line-bufferd and stderr is not. To allow to print out immediately, you could call fflush(NULL); after printing to stdout. -- Daniel |