=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-set-option.c,v retrieving revision 1.102 retrieving revision 1.103 diff -c -r1.102 -r1.103 *** src/usr.bin/tmux/cmd-set-option.c 2016/11/04 18:56:25 1.102 --- src/usr.bin/tmux/cmd-set-option.c 2017/01/11 14:56:44 1.103 *************** *** 1,4 **** ! /* $OpenBSD: cmd-set-option.c,v 1.102 2016/11/04 18:56:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-set-option.c,v 1.103 2017/01/11 14:56:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 117,123 **** if (*optstr == '@') return (cmd_set_option_user(self, item, optstr, valstr)); ! /* Find the option entry, try each table. */ oe = NULL; if (options_table_find(optstr, &oe) != 0) { if (!args_has(args, 'q')) { --- 117,123 ---- if (*optstr == '@') return (cmd_set_option_user(self, item, optstr, valstr)); ! /* Find the option entry. */ oe = NULL; if (options_table_find(optstr, &oe) != 0) { if (!args_has(args, 'q')) { *************** *** 184,190 **** return (CMD_RETURN_ERROR); } ! /* Start or stop timers if necessary. */ if (strcmp(oe->name, "automatic-rename") == 0) { RB_FOREACH(w, windows, &windows) { if (w->active == NULL) --- 184,190 ---- return (CMD_RETURN_ERROR); } ! /* Update timers and so on for various options. */ if (strcmp(oe->name, "automatic-rename") == 0) { RB_FOREACH(w, windows, &windows) { if (w->active == NULL) *************** *** 207,214 **** RB_FOREACH(w, windows, &windows) w->flags |= WINDOW_STYLECHANGED; } - - /* When the pane-border-status option has been changed, resize panes. */ if (strcmp(oe->name, "pane-border-status") == 0) { RB_FOREACH(w, windows, &windows) layout_fix_panes(w, w->sx, w->sy); --- 207,212 ----