diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-04-29 08:59:20 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-04-29 08:59:20 +0100 |
commit | 7c52d702e4bb6d3783984001678f5be98b56b7e6 (patch) | |
tree | 97982c4de13eb4b0aa59c96b4b46548c64142490 | |
parent | 3d7674816127332e456b0a82cf53dce82a591a3f (diff) | |
download | rtmux-7c52d702e4bb6d3783984001678f5be98b56b7e6.tar.gz rtmux-7c52d702e4bb6d3783984001678f5be98b56b7e6.tar.bz2 rtmux-7c52d702e4bb6d3783984001678f5be98b56b7e6.zip |
Remove an unnecessary comma.
-rw-r--r-- | options-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index b0c5bcc5..0781da46 100644 --- a/options-table.c +++ b/options-table.c @@ -717,7 +717,7 @@ const struct options_table_entry options_table[] = { { .name = "pane-active-border-style", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_WINDOW, - .default_str = "#{?pane_in_mode,fg=yellow,#{?synchronize-panes,fg=red,,fg=green}}", + .default_str = "#{?pane_in_mode,fg=yellow,#{?synchronize-panes,fg=red,fg=green}}", .flags = OPTIONS_TABLE_IS_STYLE, .separator = "," }, |