mirror of
https://github.com/tmate-io/tmate.git
synced 2025-01-09 15:38:16 +01:00
Fix status message
This commit is contained in:
parent
2e0d82648f
commit
aef7470418
@ -13,7 +13,8 @@ static void tmate_status_message_client(struct client *c, const char *message)
|
|||||||
u_int first, limit;
|
u_int first, limit;
|
||||||
|
|
||||||
limit = options_get_number(global_options, "message-limit");
|
limit = options_get_number(global_options, "message-limit");
|
||||||
delay = c->session ? options_get_number(c->session->options, "tmate-display-time") : 30000;
|
delay = options_get_number(c->session ? c->session->options : global_s_options,
|
||||||
|
"tmate-display-time");
|
||||||
|
|
||||||
status_prompt_clear(c);
|
status_prompt_clear(c);
|
||||||
status_message_clear(c);
|
status_message_clear(c);
|
||||||
@ -26,10 +27,9 @@ static void tmate_status_message_client(struct client *c, const char *message)
|
|||||||
msg->msg = xstrdup(c->message_string);
|
msg->msg = xstrdup(c->message_string);
|
||||||
TAILQ_INSERT_TAIL(&c->message_log, msg, entry);
|
TAILQ_INSERT_TAIL(&c->message_log, msg, entry);
|
||||||
|
|
||||||
first = c->message_next - limit;
|
|
||||||
TAILQ_FOREACH_SAFE(msg, &c->message_log, entry, msg1) {
|
TAILQ_FOREACH_SAFE(msg, &c->message_log, entry, msg1) {
|
||||||
if (msg->msg_num >= first)
|
if (msg->msg_num + limit >= c->message_next)
|
||||||
continue;
|
break;
|
||||||
free(msg->msg);
|
free(msg->msg);
|
||||||
TAILQ_REMOVE(&c->message_log, msg, entry);
|
TAILQ_REMOVE(&c->message_log, msg, entry);
|
||||||
free(msg);
|
free(msg);
|
||||||
|
Loading…
Reference in New Issue
Block a user