diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-06-07 15:27:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-06-07 15:27:47 +0000 |
commit | e1782e85409778654f310ca3db0a72b2e60a27e8 (patch) | |
tree | 643a17799b1b45fbc17fa8e9cf0f030b8dcde386 /usr.bin/tmux/window-buffer.c | |
parent | 913a48e127bc3e432236141dea89ac7852b4dde6 (diff) |
Return 1 if name matches not 0, also fix some spaces.
Diffstat (limited to 'usr.bin/tmux/window-buffer.c')
-rw-r--r-- | usr.bin/tmux/window-buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/window-buffer.c b/usr.bin/tmux/window-buffer.c index 9ef3ea86106..df1d7a85f8d 100644 --- a/usr.bin/tmux/window-buffer.c +++ b/usr.bin/tmux/window-buffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window-buffer.c,v 1.4 2017/06/07 14:37:30 nicm Exp $ */ +/* $OpenBSD: window-buffer.c,v 1.5 2017/06/07 15:27:46 nicm Exp $ */ /* * Copyright (c) 2017 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -238,7 +238,7 @@ window_buffer_search(__unused void *modedata, void *itemdata, const char *ss) if ((pb = paste_get_name(item->name)) == NULL) return (0); if (strstr(item->name, ss) != NULL) - return (0); + return (1); bufdata = paste_buffer_data(pb, &bufsize); return (memmem(bufdata, bufsize, ss, strlen(ss)) != NULL); } |