=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/notify.c,v retrieving revision 1.29 retrieving revision 1.30 diff -c -r1.29 -r1.30 *** src/usr.bin/tmux/notify.c 2019/12/19 09:22:33 1.29 --- src/usr.bin/tmux/notify.c 2020/04/13 07:25:33 1.30 *************** *** 1,4 **** ! /* $OpenBSD: notify.c,v 1.29 2019/12/19 09:22:33 nicm Exp $ */ /* * Copyright (c) 2012 George Nachman --- 1,4 ---- ! /* $OpenBSD: notify.c,v 1.30 2020/04/13 07:25:33 nicm Exp $ */ /* * Copyright (c) 2012 George Nachman *************** *** 76,81 **** --- 76,89 ---- else oo = fs.s->options; o = options_get(oo, ne->name); + if (o == NULL && fs.wp != NULL) { + oo = fs.wp->options; + o = options_get(oo, ne->name); + } + if (o == NULL && fs.wl != NULL) { + oo = fs.wl->window->options; + o = options_get(oo, ne->name); + } if (o == NULL) return;