diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-10-28 13:00:03 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-10-28 13:00:03 +0000 |
commit | 6b550bd62a2b2114dd26995283cd29f696b36ca5 (patch) | |
tree | b04ea54af76af97c0b19797c6459e4b9debf1717 /usr.bin/tmux/input.c | |
parent | df781a4ee00d6252c33d07789c5dbe7f4c0b2c0d (diff) |
Add paste-buffer-deleted notification and fix name of paste-buffer-changed.
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r-- | usr.bin/tmux/input.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index a5974a7c555..6d2974c383f 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.210 2022/10/28 12:20:28 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.211 2022/10/28 13:00:02 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1755,7 +1755,6 @@ static void input_csi_dispatch_sm_private(struct input_ctx *ictx) { struct screen_write_ctx *sctx = &ictx->ctx; - struct window_pane *wp = ictx->wp; struct grid_cell *gc = &ictx->cell.cell; u_int i; |