We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d68eab0 commit 97d09ebCopy full SHA for 97d09eb
coul.c
@@ -250,7 +250,8 @@ char *diag_buf = NULL;
250
void update_window(void) {
251
if (vt100) {
252
/* update window title and icon with <ESC> ] 0 ; "string" <BEL> */
253
- printf("\x1b]0;b%d:", batch_alloc);
+ uint this_batch = (opt_batch_min < 0) ? batch_alloc : batch_alloc - 1;
254
+ printf("\x1b]0;b%d:", this_batch);
255
uint pc = 0;
256
for (uint i = 1; i < level && pc < 3; ++i) {
257
if (levels[i].is_forced)
0 commit comments