diff options
author | 2020-07-27 08:03:10 +0000 | |
---|---|---|
committer | 2020-07-27 08:03:10 +0000 | |
commit | 247fdabff8519f7d585994f6c13c3381b7ef3241 (patch) | |
tree | a00cdd8389647e771bd50951762373377326b2ca /usr.bin/tmux/cmd-queue.c | |
parent | trim trailing whitespace in if_iwn.c (diff) | |
download | wireguard-openbsd-247fdabff8519f7d585994f6c13c3381b7ef3241.tar.xz wireguard-openbsd-247fdabff8519f7d585994f6c13c3381b7ef3241.zip |
Add a -d option to display-message to set delay, from theonekeyg at
gmail dot com in GitHub issue 2322.
Diffstat (limited to 'usr.bin/tmux/cmd-queue.c')
-rw-r--r-- | usr.bin/tmux/cmd-queue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-queue.c b/usr.bin/tmux/cmd-queue.c index b139fa014a4..b955918b98a 100644 --- a/usr.bin/tmux/cmd-queue.c +++ b/usr.bin/tmux/cmd-queue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-queue.c,v 1.98 2020/06/01 09:43:01 nicm Exp $ */ +/* $OpenBSD: cmd-queue.c,v 1.99 2020/07/27 08:03:10 nicm Exp $ */ /* * Copyright (c) 2013 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -858,7 +858,7 @@ cmdq_error(struct cmdq_item *item, const char *fmt, ...) c->retval = 1; } else { *msg = toupper((u_char) *msg); - status_message_set(c, 1, "%s", msg); + status_message_set(c, -1, 1, "%s", msg); } free(msg); |