diff options
author | 2017-08-09 13:44:36 +0000 | |
---|---|---|
committer | 2017-08-09 13:44:36 +0000 | |
commit | f5b434027c9d032fba93d1f8ae966689313f3c88 (patch) | |
tree | 9c54858286fbb261ef9f647dc7d1cbab462d6469 /usr.bin/tmux/options.c | |
parent | Explain how to transform markup for the terminal when not using a (diff) | |
download | wireguard-openbsd-f5b434027c9d032fba93d1f8ae966689313f3c88.tar.xz wireguard-openbsd-f5b434027c9d032fba93d1f8ae966689313f3c88.zip |
Fix filtering so it works after the change to only show windows if they
have multiple panes.
Diffstat (limited to 'usr.bin/tmux/options.c')
-rw-r--r-- | usr.bin/tmux/options.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/options.c b/usr.bin/tmux/options.c index 729e032e0ae..0fbb6449b57 100644 --- a/usr.bin/tmux/options.c +++ b/usr.bin/tmux/options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options.c,v 1.35 2017/05/31 17:56:48 nicm Exp $ */ +/* $OpenBSD: options.c,v 1.36 2017/08/09 13:44:36 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -478,7 +478,6 @@ options_match_get(struct options *oo, const char *s, int *idx, int only, return (o); } - const char * options_get_string(struct options *oo, const char *name) { |