The branch, master has been updated
       via  37d34b6b8389e0126a9aac50bf85e3c44e617b37 (commit)
      from  44452823b7e4adb540145ad2c7aa4c32c7a5c6fc (commit)

- Log -----------------------------------------------------------------
commit 37d34b6b8389e0126a9aac50bf85e3c44e617b37
Author: Nicholas Marriott <nicholas.marri...@gmail.com>
Commit: Nicholas Marriott <nicholas.marri...@gmail.com>

    Don't hang when clearing line in choose mode now that the cursor stays at 
the
    end with wrap.
---
 window-choose.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/window-choose.c b/window-choose.c
index 62f729a..d37527d 100644
--- a/window-choose.c
+++ b/window-choose.c
@@ -753,7 +753,7 @@ window_choose_write_line(
                    (item->wcd->type & TREE_SESSION) ?
                    (item->state & TREE_EXPANDED ? "-" : "+") : "", item->name);
        }
-       while (s->cx < screen_size_x(s))
+       while (s->cx < screen_size_x(s) - 1)
                screen_write_putc(ctx, &gc, ' ');
 
        if (data->input_type != WINDOW_CHOOSE_NORMAL) {


-----------------------------------------------------------------------

Summary of changes:
 window-choose.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
tmux

------------------------------------------------------------------------------
The Go Parallel Website, sponsored by Intel - in partnership with Geeknet, 
is your hub for all things parallel software development, from weekly thought 
leadership blogs to news, videos, case studies, tutorials, tech docs, 
whitepapers, evaluation guides, and opinion stories. Check out the most 
recent posts - join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
tmux-cvs mailing list
tmux-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-cvs

Reply via email to