Re: [PATCH 2/2] lineedit: fix left-over print to stdout

2025-07-01 Thread Denys Vlasenko
Applied both. Thank you. On Tue, Apr 15, 2025 at 11:46 PM Ahmad Fatoum wrote: > > There's code printing to stderr both before and after the single call to > puts inside put_cur_glyph_and_inc_cursor(). > > This is likely an oversight as we want everything to go through the > same file descriptor,

[PATCH 2/2] lineedit: fix left-over print to stdout

2025-04-15 Thread Ahmad Fatoum
There's code printing to stderr both before and after the single call to puts inside put_cur_glyph_and_inc_cursor(). This is likely an oversight as we want everything to go through the same file descriptor, so switch it over to fputs. Fixes: fd47f056765a ("lineedit: print prompt and editing opera