summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/paste.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2014-08-25 13:13:19 +0000
committernicm <nicm@openbsd.org>2014-08-25 13:13:19 +0000
commitff25b1dc8da6bddb8e93bdf60c625be15e71a2f0 (patch)
treeb50eff5fa18f04d7059366a40ef8a065143f3da0 /usr.bin/tmux/paste.c
parentsnmpd cannot reload (diff)
downloadwireguard-openbsd-ff25b1dc8da6bddb8e93bdf60c625be15e71a2f0.tar.xz
wireguard-openbsd-ff25b1dc8da6bddb8e93bdf60c625be15e71a2f0.zip
Don't allow pasting into input-disabled panes, from Anish R Athalye.
Diffstat (limited to 'usr.bin/tmux/paste.c')
-rw-r--r--usr.bin/tmux/paste.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/tmux/paste.c b/usr.bin/tmux/paste.c
index c9339b205db..fb56c003653 100644
--- a/usr.bin/tmux/paste.c
+++ b/usr.bin/tmux/paste.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: paste.c,v 1.21 2014/06/20 11:00:19 nicm Exp $ */
+/* $OpenBSD: paste.c,v 1.22 2014/08/25 13:13:19 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -298,6 +298,9 @@ paste_send_pane(struct paste_buffer *pb, struct window_pane *wp,
const char *data = pb->data, *end = data + pb->size, *lf;
size_t seplen;
+ if (wp->flags & PANE_INPUTOFF)
+ return;
+
if (bracket)
bufferevent_write(wp->event, "\033[200~", 6);