diff options
author | 2013-01-17 00:11:22 +0000 | |
---|---|---|
committer | 2013-01-17 00:11:22 +0000 | |
commit | 7c445aaf9a55163214d3e84af4f0f90beaad9565 (patch) | |
tree | 3e3b7678664f6925be4da1dbdccce36731146929 /usr.bin/tmux/cmd-resize-pane.c | |
parent | Force the latest 3 generations of Intel SATA chipsets into AHCI mode. (diff) | |
download | wireguard-openbsd-7c445aaf9a55163214d3e84af4f0f90beaad9565.tar.xz wireguard-openbsd-7c445aaf9a55163214d3e84af4f0f90beaad9565.zip |
Remove the layout undo/redo code which never really worked.
Diffstat (limited to 'usr.bin/tmux/cmd-resize-pane.c')
-rw-r--r-- | usr.bin/tmux/cmd-resize-pane.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-resize-pane.c b/usr.bin/tmux/cmd-resize-pane.c index 1c2ba748e2a..71b0f0b41e0 100644 --- a/usr.bin/tmux/cmd-resize-pane.c +++ b/usr.bin/tmux/cmd-resize-pane.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-resize-pane.c,v 1.11 2012/07/11 07:10:15 nicm Exp $ */ +/* $OpenBSD: cmd-resize-pane.c,v 1.12 2013/01/17 00:11:22 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -103,7 +103,6 @@ cmd_resize_pane_exec(struct cmd *self, struct cmd_ctx *ctx) } } - layout_list_add(wp->window); if (args_has(self->args, 'L')) layout_resize_pane(wp, LAYOUT_LEFTRIGHT, -adjust); else if (args_has(self->args, 'R')) |