Author: emaste
Date: Thu Apr 12 02:10:01 2018
New Revision: 332421
URL: https://svnweb.freebsd.org/changeset/base/332421

Log:
  vt: add three more cp437 mappings for vga textmode
  
  In UTF-8 locales mandoc uses a number of characters outside of the Basic
  Latin group, e.g. from general punctuation or miscellaneous mathematical
  symbols, and these rendered as ? in text mode.
  
  This change adds (char, replacement, code point, description):
  
      – - U+2013 En Dash
      ⟨ < U+27E8 Mathematical Left Angle Bracket
      ⟩ > U+27E9 Mathematical Right Angle Bracket
  
  This change addresses some common cases; there are others that still
  need to be added after a more thorough review.
  
  PR:           227409
  MFC after:    1 week
  Sponsored by: The FreeBSD Foundation

Modified:
  head/sys/dev/vt/hw/vga/vt_vga.c

Modified: head/sys/dev/vt/hw/vga/vt_vga.c
==============================================================================
--- head/sys/dev/vt/hw/vga/vt_vga.c     Wed Apr 11 22:23:22 2018        
(r332420)
+++ head/sys/dev/vt/hw/vga/vt_vga.c     Thu Apr 12 02:10:01 2018        
(r332421)
@@ -237,6 +237,7 @@ static const struct unicp437 cp437table[] = {
        { 0x03c0, 0xe3, 0x00 }, { 0x03c3, 0xe5, 0x00 },
        { 0x03c4, 0xe7, 0x00 }, { 0x03c6, 0xed, 0x00 },
        { 0x03d5, 0xed, 0x00 }, { 0x2010, 0x2d, 0x00 },
+       { 0x2013, 0x2d, 0x00 },
        { 0x2014, 0x2d, 0x00 }, { 0x2018, 0x60, 0x00 },
        { 0x2019, 0x27, 0x00 }, { 0x201c, 0x22, 0x00 },
        { 0x201d, 0x22, 0x00 }, { 0x2022, 0x07, 0x00 },
@@ -285,7 +286,8 @@ static const struct unicp437 cp437table[] = {
        { 0x2640, 0x0c, 0x00 }, { 0x2642, 0x0b, 0x00 },
        { 0x2660, 0x06, 0x00 }, { 0x2663, 0x05, 0x00 },
        { 0x2665, 0x03, 0x01 }, { 0x266a, 0x0d, 0x00 },
-       { 0x266c, 0x0e, 0x00 },
+       { 0x266c, 0x0e, 0x00 }, { 0x27e8, 0x3c, 0x00 },
+       { 0x27e9, 0x3e, 0x00 },
 };
 
 static uint8_t
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to