Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2026-06-18 11:15:07 +01:00
11 changed files with 115 additions and 16 deletions

View File

@@ -1020,7 +1020,7 @@ format_cb_pane_fg(struct format_tree *ft)
if (wp == NULL)
return (NULL);
tty_default_colours(&gc, wp);
tty_default_colours(&gc, wp, NULL);
return (xstrdup(colour_tostring(gc.fg)));
}
@@ -1057,7 +1057,7 @@ format_cb_pane_bg(struct format_tree *ft)
if (wp == NULL)
return (NULL);
tty_default_colours(&gc, wp);
tty_default_colours(&gc, wp, NULL);
return (xstrdup(colour_tostring(gc.bg)));
}