diff options
author | 2015-08-29 09:25:00 +0000 | |
---|---|---|
committer | 2015-08-29 09:25:00 +0000 | |
commit | 909ecc87d18fa02236fefaa7d55d220b2202fe4c (patch) | |
tree | ecd0c19608b551426dead29b605415812af24a56 /usr.bin/tmux/cmd-paste-buffer.c | |
parent | We already loop over the windows in server_client_loop, so don't do it (diff) | |
download | wireguard-openbsd-909ecc87d18fa02236fefaa7d55d220b2202fe4c.tar.xz wireguard-openbsd-909ecc87d18fa02236fefaa7d55d220b2202fe4c.zip |
Move struct paste_buffer out of tmux.h.
Diffstat (limited to 'usr.bin/tmux/cmd-paste-buffer.c')
-rw-r--r-- | usr.bin/tmux/cmd-paste-buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-paste-buffer.c b/usr.bin/tmux/cmd-paste-buffer.c index aa09f906262..3c6b17d8017 100644 --- a/usr.bin/tmux/cmd-paste-buffer.c +++ b/usr.bin/tmux/cmd-paste-buffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-paste-buffer.c,v 1.27 2014/11/05 23:25:02 nicm Exp $ */ +/* $OpenBSD: cmd-paste-buffer.c,v 1.28 2015/08/29 09:25:00 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -58,7 +58,7 @@ cmd_paste_buffer_exec(struct cmd *self, struct cmd_q *cmdq) bufname = args_get(args, 'b'); if (bufname == NULL) - pb = paste_get_top(); + pb = paste_get_top(NULL); else { pb = paste_get_name(bufname); if (pb == NULL) { |