=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options.c,v retrieving revision 1.67 retrieving revision 1.68 diff -c -r1.67 -r1.68 *** src/usr.bin/tmux/options.c 2021/11/03 13:37:17 1.67 --- src/usr.bin/tmux/options.c 2022/03/16 17:00:17 1.68 *************** *** 1,4 **** ! /* $OpenBSD: options.c,v 1.67 2021/11/03 13:37:17 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options.c,v 1.68 2022/03/16 17:00:17 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott *************** *** 1108,1113 **** --- 1108,1115 ---- struct window_pane *wp; int c; + log_debug("%s: %s", __func__, name); + if (strcmp(name, "automatic-rename") == 0) { RB_FOREACH(w, windows, &windows) { if (w->active == NULL) *************** *** 1129,1134 **** --- 1131,1140 ---- name), &wp->screen->default_cstyle, &wp->screen->default_mode); } + } + if (strcmp(name, "fill-character") == 0) { + RB_FOREACH(w, windows, &windows) + window_set_fill_character(w); } if (strcmp(name, "key-table") == 0) { TAILQ_FOREACH(loop, &clients, entry)