=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/style.c,v retrieving revision 1.27 retrieving revision 1.28 diff -c -r1.27 -r1.28 *** src/usr.bin/tmux/style.c 2020/05/16 15:01:31 1.27 --- src/usr.bin/tmux/style.c 2020/05/16 16:02:24 1.28 *************** *** 1,4 **** ! /* $OpenBSD: style.c,v 1.27 2020/05/16 15:01:31 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: style.c,v 1.28 2020/05/16 16:02:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 31,36 **** --- 31,37 ---- /* Default style. */ static struct style style_default = { { { { ' ' }, 0, 1, 1 }, 0, 0, 8, 8, 0 }, + 0, 8, STYLE_ALIGN_DEFAULT, *************** *** 78,84 **** sy->gc.bg = base->bg; sy->gc.attr = base->attr; sy->gc.flags = base->flags; ! } else if (strcasecmp(tmp, "push-default") == 0) sy->default_type = STYLE_DEFAULT_PUSH; else if (strcasecmp(tmp, "pop-default") == 0) sy->default_type = STYLE_DEFAULT_POP; --- 79,89 ---- sy->gc.bg = base->bg; sy->gc.attr = base->attr; sy->gc.flags = base->flags; ! } else if (strcasecmp(tmp, "ignore") == 0) ! sy->ignore = 1; ! else if (strcasecmp(tmp, "noignore") == 0) ! sy->ignore = 0; ! else if (strcasecmp(tmp, "push-default") == 0) sy->default_type = STYLE_DEFAULT_PUSH; else if (strcasecmp(tmp, "pop-default") == 0) sy->default_type = STYLE_DEFAULT_POP;