]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Fix typo.
authorBruno Haible <bruno@clisp.org>
Mon, 4 Dec 2006 13:25:47 +0000 (13:25 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:14:26 +0000 (12:14 +0200)
gnulib-local/ChangeLog
gnulib-local/lib/term-ostream.oo.c

index e8b21f70751f03c950c1162291d13fd6bdd9d690..8762b93f6754e6d5226c0a5d000ac3ecf85ac8a2 100644 (file)
@@ -1,3 +1,7 @@
+2006-12-01  Bruno Haible  <bruno@clisp.org>
+
+       * lib/term-ostream.oo.c (out_attr_change): Fix typo.
+
 2006-11-30  Bruno Haible  <bruno@clisp.org>
 
        Add special color support for xterm-16color, xterm-88color,
index 0b8787a898147b4592e2bc82768b90b68dc3e285..1d66a09d6e8ce1dc95e7c096ddbee8fe81d9c734 100644 (file)
@@ -1254,7 +1254,7 @@ out_attr_change (term_ostream_t stream,
            bytes[0] = 0x1B; bytes[1] = '[';
            if (new_attr.bgcolor < 8)
              {
-               bytes[2] = '3'; bytes[3] = '0' + new_attr.bgcolor;
+               bytes[2] = '4'; bytes[3] = '0' + new_attr.bgcolor;
                bytes[4] = 'm';
                if (full_write (out_fd, bytes, 5) < 5)
                  out_error ();