Update of /cvsroot/tmux/tmux
In directory vz-cvs-2.sog:/tmp/cvs-serv16114

Modified Files:
        input.c 
Log Message:
Sync OpenBSD patchset 864:

Fix a typo that meant we did not reset the background colour when it was
omitted in a 256-colour SGR ([48;5m). From Yusuke ENDOH.


Index: input.c
===================================================================
RCS file: /cvsroot/tmux/tmux/input.c,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -d -r1.115 -r1.116
--- input.c     15 Feb 2011 15:21:14 -0000      1.115
+++ input.c     19 Mar 2011 23:28:30 -0000      1.116
@@ -1277,7 +1277,7 @@
                                        gc->fg = 8;
                                } else if (n == 48) {
                                        gc->flags &= ~GRID_FLAG_BG256;
-                                       gc->fg = 8;
+                                       gc->bg = 8;
                                }
 
                        } else {


------------------------------------------------------------------------------
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
_______________________________________________
tmux-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tmux-cvs

Reply via email to