diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-03 21:42:37 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-03 21:42:37 +0000 |
commit | 9e6090a7a2a0d25499bce0dc68fd67289f3a5e39 (patch) | |
tree | fd99a49a5ae948c9a1eb618cae7fd26e68d554a4 /window.c | |
parent | 85d520c41e74056e59f11b5d1f6dd3f5602fa17a (diff) | |
download | rtmux-9e6090a7a2a0d25499bce0dc68fd67289f3a5e39.tar.gz rtmux-9e6090a7a2a0d25499bce0dc68fd67289f3a5e39.tar.bz2 rtmux-9e6090a7a2a0d25499bce0dc68fd67289f3a5e39.zip |
Per-session configuration options.
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.37 2008-06-03 18:38:51 nicm Exp $ */ +/* $Id: window.c,v 1.38 2008-06-03 21:42:37 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -145,8 +145,8 @@ winlink_previous(unused struct winlinks *wwl, struct winlink *wl) } struct window * -window_create( - const char *name, const char *cmd, const char **env, u_int sx, u_int sy) +window_create(const char *name, + const char *cmd, const char **env, u_int sx, u_int sy, u_int hlimit) { struct window *w; struct winsize ws; @@ -186,7 +186,7 @@ window_create( w->in = buffer_create(BUFSIZ); w->out = buffer_create(BUFSIZ); w->mode = NULL; - screen_create(&w->base, sx, sy); + screen_create(&w->base, sx, sy, hlimit); w->screen = &w->base; input_init(w); |