Revision: 2865
          http://tmux.svn.sourceforge.net/tmux/?rev=2865&view=rev
Author:   tcunha
Date:     2012-08-31 09:22:50 +0000 (Fri, 31 Aug 2012)
Log Message:
-----------
Sync OpenBSD patchset 1166:

xterm won't reach version 500 for a while so set that as the upper limit.

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

Modified: trunk/tty-keys.c
===================================================================
--- trunk/tty-keys.c    2012-08-31 09:22:08 UTC (rev 2864)
+++ trunk/tty-keys.c    2012-08-31 09:22:50 UTC (rev 2865)
@@ -734,7 +734,8 @@
                a = b = 0;
 
        log_debug("received xterm version %u", b);
-       tty_set_version(tty, b);
+       if (b < 500)
+               tty_set_version(tty, b);
 
        return (0);
 }

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


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
tmux-cvs mailing list
tmux-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-cvs

Reply via email to