commit c5d0edcd32396b2700e5a9cf803434afe59b6ba0 from: Omar Polo date: Tue Sep 09 22:49:10 2025 UTC use printf instead of dprintf; for solaris compat Solaris before 11.4 lacks dprintf(), spotted by vins. Instead of providing a local implementation, since we're using dprintf() just to set the window title, use printf() + fflush(). commit - 9965b5770949fe2a34477368289cf72a886fb6d2 commit + c5d0edcd32396b2700e5a9cf803434afe59b6ba0 blob - 03a330c4c616510bab12005c89b2f666f48d44b8 blob + be7831d05deccca5ba0d68084b0def321d2f3e8b --- ui.c +++ ui.c @@ -1072,9 +1072,11 @@ redraw_tab(struct tab *tab) doupdate(); - if (set_title) - dprintf(1, "\033]2;%s - Telescope\a", + if (set_title) { + printf("\033]2;%s - Telescope\a", current_tab->buffer.title); + fflush(stdout); + } } void