summaryrefslogtreecommitdiffstats
path: root/cmd-break-pane.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-12-04 22:14:47 +0000
committerTiago Cunha <tcunha@gmx.com>2009-12-04 22:14:47 +0000
commitcc094fdfe6276b93683113f395edbc004837d362 (patch)
treec685b2f63461b2026d0677c4b8974e3004e114ff /cmd-break-pane.c
parent1caa73afb4da381425160cbff68284a4dab1470b (diff)
Sync OpenBSD patchset 581:
Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last time now I've configured emacs to make them displayed in really annoying colours...
Diffstat (limited to 'cmd-break-pane.c')
-rw-r--r--cmd-break-pane.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/cmd-break-pane.c b/cmd-break-pane.c
index 6c01ca4b..dd9bdaf9 100644
--- a/cmd-break-pane.c
+++ b/cmd-break-pane.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-break-pane.c,v 1.10 2009-11-14 17:56:39 tcunha Exp $ */
+/* $Id: cmd-break-pane.c,v 1.11 2009-12-04 22:14:47 tcunha Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -64,18 +64,18 @@ cmd_break_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
if (wl->window->active == NULL)
wl->window->active = TAILQ_NEXT(wp, entry);
}
- layout_close_pane(wp);
+ layout_close_pane(wp);
- w = wp->window = window_create1(s->sx, s->sy);
- TAILQ_INSERT_HEAD(&w->panes, wp, entry);
- w->active = wp;
- w->name = default_window_name(w);
+ w = wp->window = window_create1(s->sx, s->sy);
+ TAILQ_INSERT_HEAD(&w->panes, wp, entry);
+ w->active = wp;
+ w->name = default_window_name(w);
layout_init(w);
base_idx = options_get_number(&s->options, "base-index");
- wl = session_attach(s, w, -1 - base_idx, &cause); /* can't fail */
- if (!cmd_check_flag(data->chflags, 'd'))
- session_select(s, wl->idx);
+ wl = session_attach(s, w, -1 - base_idx, &cause); /* can't fail */
+ if (!cmd_check_flag(data->chflags, 'd'))
+ session_select(s, wl->idx);
server_redraw_session(s);
server_status_session_group(s);