diff options
author | 2009-07-27 18:51:46 +0000 | |
---|---|---|
committer | 2009-07-27 18:51:46 +0000 | |
commit | 9674a8fa9a8b2ce510c652a24572d429444f4bc1 (patch) | |
tree | a38abdfd5352b92d8962081ec62ce43db496eee1 /usr.bin/tmux/window-copy.c | |
parent | explain the pedigree of these firmwares, since the license is not quite right. (diff) | |
download | wireguard-openbsd-9674a8fa9a8b2ce510c652a24572d429444f4bc1.tar.xz wireguard-openbsd-9674a8fa9a8b2ce510c652a24572d429444f4bc1.zip |
Get rid of empty mode_key_free function.
Diffstat (limited to 'usr.bin/tmux/window-copy.c')
-rw-r--r-- | usr.bin/tmux/window-copy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/tmux/window-copy.c b/usr.bin/tmux/window-copy.c index dc9cb7311d7..ce3ee84c51c 100644 --- a/usr.bin/tmux/window-copy.c +++ b/usr.bin/tmux/window-copy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window-copy.c,v 1.8 2009/07/27 07:42:45 nicm Exp $ */ +/* $OpenBSD: window-copy.c,v 1.9 2009/07/27 18:51:46 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -125,8 +125,6 @@ window_copy_free(struct window_pane *wp) { struct window_copy_mode_data *data = wp->modedata; - mode_key_free(&data->mdata); - screen_free(&data->screen); xfree(data); } |