From ff25b1dc8da6bddb8e93bdf60c625be15e71a2f0 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 25 Aug 2014 13:13:19 +0000 Subject: [PATCH] Don't allow pasting into input-disabled panes, from Anish R Athalye. --- usr.bin/tmux/paste.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 @@ -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); -- 2.20.1