svn commit: r353925 - stable/12/sys/dev/vt

Ed Maste emaste at FreeBSD.org
Wed Oct 23 14:15:17 UTC 2019


Author: emaste
Date: Wed Oct 23 14:15:16 2019
New Revision: 353925
URL: https://svnweb.freebsd.org/changeset/base/353925

Log:
  MFC r353680: vt: remove comment that is not true since r259680
  
  r259680 added support to vt(4) for printing double-width characters.
  Remove the comment that claims no support.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/12/sys/dev/vt/vt_font.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/dev/vt/vt_font.c
==============================================================================
--- stable/12/sys/dev/vt/vt_font.c	Wed Oct 23 13:41:58 2019	(r353924)
+++ stable/12/sys/dev/vt/vt_font.c	Wed Oct 23 14:15:16 2019	(r353925)
@@ -92,11 +92,6 @@ vtfont_lookup(const struct vt_font *vf, term_char_t c)
 	unsigned int normal_map;
 	unsigned int bold_map;
 
-	/*
-	 * No support for printing right hand sides for CJK fullwidth
-	 * characters. Simply print a space and assume that the left
-	 * hand side describes the entire character.
-	 */
 	src = TCHAR_CHARACTER(c);
 	if (TCHAR_FORMAT(c) & TF_CJK_RIGHT) {
 		normal_map = VFNT_MAP_NORMAL_RIGHT;


More information about the svn-src-all mailing list