diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-11-23 21:20:54 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-11-23 21:20:54 +0000 |
commit | d63de1e407176bab41c61ad7f3def0e4d0707cdc (patch) | |
tree | 6dd19751b0d0f013bff02af7436b0a7284fd8555 | |
parent | 78a00c845cc4d4e80f36f7cda71e0ca9ea13dcf4 (diff) | |
parent | 28e72ae34d43dda28ca0e6dc652eaa1179c351c7 (diff) | |
download | rtmux-d63de1e407176bab41c61ad7f3def0e4d0707cdc.tar.gz rtmux-d63de1e407176bab41c61ad7f3def0e4d0707cdc.tar.bz2 rtmux-d63de1e407176bab41c61ad7f3def0e4d0707cdc.zip |
Merge branch 'obsd-master'
Conflicts:
server.c
tmux.c
-rw-r--r-- | grid.c | 5 | ||||
-rw-r--r-- | options-table.c | 2 | ||||
-rw-r--r-- | server.c | 4 | ||||
-rw-r--r-- | status.c | 16 | ||||
-rw-r--r-- | tmux.1 | 1 | ||||
-rw-r--r-- | tmux.c | 4 |
6 files changed, 16 insertions, 16 deletions
@@ -368,11 +368,8 @@ grid_clear_lines(struct grid *gd, u_int py, u_int ny) for (yy = py; yy < py + ny; yy++) { gl = &gd->linedata[yy]; free(gl->celldata); - memset(gl, 0, sizeof *gl); - free(gl->extddata); - gl->extddata = NULL; - gl->extdsize = 0; + memset(gl, 0, sizeof *gl); } } diff --git a/options-table.c b/options-table.c index bd49a9c8..054b2700 100644 --- a/options-table.c +++ b/options-table.c @@ -197,7 +197,7 @@ const struct options_table_entry options_table[] = { { .name = "display-time", .type = OPTIONS_TABLE_NUMBER, .scope = OPTIONS_TABLE_SESSION, - .minimum = 1, + .minimum = 0, .maximum = INT_MAX, .default_num = 750 }, @@ -176,8 +176,8 @@ server_start(struct event_base *base, int lockfd, char *lockfile) tty_create_log(); #ifdef __OpenBSD__ - if (pledge("stdio rpath wpath cpath fattr unix recvfd proc exec tty " - "ps", NULL) != 0) + if (pledge("stdio rpath wpath cpath fattr unix getpw recvfd proc exec " + "tty ps", NULL) != 0) fatal("pledge failed"); #endif @@ -574,13 +574,15 @@ status_message_set(struct client *c, const char *fmt, ...) } delay = options_get_number(c->session->options, "display-time"); - tv.tv_sec = delay / 1000; - tv.tv_usec = (delay % 1000) * 1000L; - - if (event_initialized(&c->message_timer)) - evtimer_del(&c->message_timer); - evtimer_set(&c->message_timer, status_message_callback, c); - evtimer_add(&c->message_timer, &tv); + if (delay > 0) { + tv.tv_sec = delay / 1000; + tv.tv_usec = (delay % 1000) * 1000L; + + if (event_initialized(&c->message_timer)) + evtimer_del(&c->message_timer); + evtimer_set(&c->message_timer, status_message_callback, c); + evtimer_add(&c->message_timer, &tv); + } c->tty.flags |= (TTY_NOCURSOR|TTY_FREEZE); c->flags |= CLIENT_STATUS; @@ -2561,6 +2561,7 @@ command appear. .It Ic display-time Ar time Set the amount of time for which status line messages and other on-screen indicators are displayed. +If set to 0, messages and indicators are displayed until a key is pressed. .Ar time is in milliseconds. .It Ic history-limit Ar lines @@ -261,8 +261,8 @@ main(int argc, char **argv) usage(); #ifdef __OpenBSD__ - if (pledge("stdio rpath wpath cpath flock fattr unix sendfd recvfd " - "proc exec tty ps", NULL) != 0) + if (pledge("stdio rpath wpath cpath flock fattr unix getpw sendfd " + "recvfd proc exec tty ps", NULL) != 0) err(1, "pledge"); #endif |