aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-13 18:57:55 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-13 18:57:55 +0000
commit0450b4a5d436c1408b399150a89cbb2e7982f23f (patch)
tree0d9b50225b2b652fb9defcbb3209d17245a5f246 /server.c
parentfdafe630049861c7d6f293bc34064182d8f326f8 (diff)
downloadrtmux-0450b4a5d436c1408b399150a89cbb2e7982f23f.tar.gz
rtmux-0450b4a5d436c1408b399150a89cbb2e7982f23f.tar.bz2
rtmux-0450b4a5d436c1408b399150a89cbb2e7982f23f.zip
Move status prompt/message init and teardown into status.c.
Diffstat (limited to 'server.c')
-rw-r--r--server.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/server.c b/server.c
index 1a5f6166..309a7297 100644
--- a/server.c
+++ b/server.c
@@ -1,4 +1,4 @@
-/* $Id: server.c,v 1.120 2009-02-11 17:50:35 nicm Exp $ */
+/* $Id: server.c,v 1.121 2009-02-13 18:57:55 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -556,7 +556,7 @@ server_check_timers(struct client *c)
fatal("gettimeofday");
if (c->message_string != NULL && timercmp(&tv, &c->message_timer, >))
- server_clear_client_message(c);
+ status_message_clear(c);
if (c->message_string != NULL || c->prompt_string != NULL) {
/*
@@ -694,7 +694,7 @@ server_handle_client(struct client *c)
return;
wp = c->session->curw->window->active; /* could die */
- server_clear_client_message(c);
+ status_message_clear(c);
if (c->prompt_string != NULL) {
status_prompt_key(c, key);
continue;