=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/window-customize.c,v retrieving revision 1.13 retrieving revision 1.14 diff -c -r1.13 -r1.14 *** src/usr.bin/tmux/window-customize.c 2021/11/29 11:01:51 1.13 --- src/usr.bin/tmux/window-customize.c 2022/03/24 12:07:25 1.14 *************** *** 1,4 **** ! /* $OpenBSD: window-customize.c,v 1.13 2021/11/29 11:01:51 nicm Exp $ */ /* * Copyright (c) 2020 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: window-customize.c,v 1.14 2022/03/24 12:07:25 nicm Exp $ */ /* * Copyright (c) 2020 Nicholas Marriott *************** *** 680,688 **** } ft = format_create_from_state(NULL, NULL, &fs); ! if (oe == NULL) ! text = "This is a user option."; ! else if (oe->text == NULL) text = "This option doesn't have a description."; else text = oe->text; --- 680,686 ---- } ft = format_create_from_state(NULL, NULL, &fs); ! if (oe == NULL || oe->text == NULL) text = "This option doesn't have a description."; else text = oe->text;