diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-14 16:47:20 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-14 16:47:20 +0000 |
commit | 0f403474aaf0f4aa4475ef6095d1ab420ebfed60 (patch) | |
tree | 2a51f3a931cfa23f39b2f737dd682ddc0e03611a /server-fn.c | |
parent | 62d7ad2690c0f72f06195351aa50e3fe037f456a (diff) | |
download | rtmux-0f403474aaf0f4aa4475ef6095d1ab420ebfed60.tar.gz rtmux-0f403474aaf0f4aa4475ef6095d1ab420ebfed60.tar.bz2 rtmux-0f403474aaf0f4aa4475ef6095d1ab420ebfed60.zip |
New window options: force-width and force-height. This will force a window to
an arbitrary width and height (0 for the default unlimited). This is neat for
emacs which doesn't have a sensible way to force hard wrapping at 80
columns. Also, don't try to be clever and use clr_eol when redrawing the
whole screen, it causes trouble since the redraw functions are used to draw
the blank areas too.
Diffstat (limited to 'server-fn.c')
-rw-r--r-- | server-fn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server-fn.c b/server-fn.c index 4df9aee5..59813f65 100644 --- a/server-fn.c +++ b/server-fn.c @@ -1,4 +1,4 @@ -/* $Id: server-fn.c,v 1.40 2008-06-07 07:13:08 nicm Exp $ */ +/* $Id: server-fn.c,v 1.41 2008-06-14 16:47:20 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -183,6 +183,6 @@ server_write_message(struct client *c, const char *fmt, ...) screen_redraw_stop(&ctx); } else { screen_redraw_stop(&ctx); - status_write_client(c); + server_status_client(c); } } |