diff options
author | Bruno Haible <bruno@clisp.org> | 2006-12-04 13:25:47 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:14:26 +0200 |
commit | 85ad6ad9e3535c6859b4167084707831482276b9 (patch) | |
tree | b68d9e636d3bf9a1e9950dcfdf82fc147984e8f6 /gnulib-local/lib | |
parent | 5d10597d5469e615de16d3486a0b14d0c9d388ea (diff) | |
download | external_gettext-85ad6ad9e3535c6859b4167084707831482276b9.zip external_gettext-85ad6ad9e3535c6859b4167084707831482276b9.tar.gz external_gettext-85ad6ad9e3535c6859b4167084707831482276b9.tar.bz2 |
Fix typo.
Diffstat (limited to 'gnulib-local/lib')
-rw-r--r-- | gnulib-local/lib/term-ostream.oo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnulib-local/lib/term-ostream.oo.c b/gnulib-local/lib/term-ostream.oo.c index 0b8787a..1d66a09 100644 --- a/gnulib-local/lib/term-ostream.oo.c +++ b/gnulib-local/lib/term-ostream.oo.c @@ -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 (); |