Date: Tue, 10 Jun 2014 01:19:49 +0000 (UTC) From: Ed Maste <emaste@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r267310 - head/sys/dev/vt/hw/vga Message-ID: <201406100119.s5A1JnYg050672@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: emaste Date: Tue Jun 10 01:19:48 2014 New Revision: 267310 URL: http://svnweb.freebsd.org/changeset/base/267310 Log: Correct unicode map for VGA ROM character 0x0e The character is a beamed pair of sixteenth notes, so should be U+266C not U+266B (beamed eighth notes). Modified: head/sys/dev/vt/hw/vga/vga.c Modified: head/sys/dev/vt/hw/vga/vga.c ============================================================================== --- head/sys/dev/vt/hw/vga/vga.c Mon Jun 9 23:11:50 2014 (r267309) +++ head/sys/dev/vt/hw/vga/vga.c Tue Jun 10 01:19:48 2014 (r267310) @@ -351,7 +351,8 @@ static const struct unicp437 cp437table[ { 0x263a, 0x01, 0x01 }, { 0x263c, 0x0f, 0x00 }, { 0x2640, 0x0c, 0x00 }, { 0x2642, 0x0b, 0x00 }, { 0x2660, 0x06, 0x00 }, { 0x2663, 0x05, 0x00 }, - { 0x2665, 0x03, 0x01 }, { 0x266a, 0x0d, 0x01 }, + { 0x2665, 0x03, 0x01 }, { 0x266a, 0x0d, 0x00 }, + { 0x266c, 0x0e, 0x00 }, }; static uint8_t
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406100119.s5A1JnYg050672>