From e7990375cb130853505fb2ff3a2fa801537119e5 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 15 Oct 2016 09:27:52 +0000 Subject: Give window_create and window_create1 better names. --- session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'session.c') diff --git a/session.c b/session.c index 423b7db1..64072dcf 100644 --- a/session.c +++ b/session.c @@ -349,7 +349,7 @@ session_new(struct session *s, const char *name, int argc, char **argv, shell = _PATH_BSHELL; hlimit = options_get_number(s->options, "history-limit"); - w = window_create(name, argc, argv, path, shell, cwd, env, s->tio, + w = window_create_spawn(name, argc, argv, path, shell, cwd, env, s->tio, s->sx, s->sy, hlimit, cause); if (w == NULL) { winlink_remove(&s->windows, wl); -- cgit