Revision: 2740
          http://tmux.svn.sourceforge.net/tmux/?rev=2740&view=rev
Author:   tcunha
Date:     2012-03-18 02:02:18 +0000 (Sun, 18 Mar 2012)
Log Message:
-----------
Sync OpenBSD patchset 1061:

Do not clear to end of line if the line is full, fixes missing last
character in rightmost pane.

Modified Paths:
--------------
    trunk/tty.c

Modified: trunk/tty.c
===================================================================
--- trunk/tty.c 2012-03-18 02:01:46 UTC (rev 2739)
+++ trunk/tty.c 2012-03-18 02:02:18 UTC (rev 2740)
@@ -604,7 +604,7 @@
        tty_reset(tty);
 
        tty_cursor(tty, ox + sx, oy + py);
-       if (ox + screen_size_x(s) >= tty->sx &&
+       if (sx != screen_size_x(s) && ox + screen_size_x(s) >= tty->sx &&
            tty_term_has(tty->term, TTYC_EL))
                tty_putcode(tty, TTYC_EL);
        else {

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
tmux-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tmux-cvs

Reply via email to