diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-12-11 19:59:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-12-11 19:59:08 +0000 |
commit | 5a5db02b8514eff40b97b3f3e4e85a3d948b57da (patch) | |
tree | b365177fbccd29ab040ae598fa22a6bf2e10638d /status.c | |
parent | 38cc1a1843b370eaeff749802d1d8803b73c4b93 (diff) | |
parent | 2a6b2153280278d356dfbdd2af36887d5a1c8763 (diff) | |
download | rtmux-5a5db02b8514eff40b97b3f3e4e85a3d948b57da.tar.gz rtmux-5a5db02b8514eff40b97b3f3e4e85a3d948b57da.tar.bz2 rtmux-5a5db02b8514eff40b97b3f3e4e85a3d948b57da.zip |
Merge branch 'master' of github.com:tmux/tmux
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1124,8 +1124,8 @@ status_prompt_key(struct client *c, key_code key) } if (c->prompt_flags & PROMPT_SINGLE) { - if (c->prompt_callbackfn( - c->prompt_data, c->prompt_buffer) == 0) + if (c->prompt_callbackfn(c->prompt_data, + c->prompt_buffer) == 0) status_prompt_clear(c); } |