svn commit: r331440 - head/stand/i386/libi386

Kyle Evans kevans at FreeBSD.org
Fri Mar 23 17:22:29 UTC 2018


Author: kevans
Date: Fri Mar 23 17:22:28 2018
New Revision: 331440
URL: https://svnweb.freebsd.org/changeset/base/331440

Log:
  Match broken style of vidconsole.c
  
  This particular function uses a broken mix of indentation styles. Match it
  for the newly added SGR 22 bits.
  
  Reported by:	jkim
  X-MFC-With:	r331416

Modified:
  head/stand/i386/libi386/vidconsole.c

Modified: head/stand/i386/libi386/vidconsole.c
==============================================================================
--- head/stand/i386/libi386/vidconsole.c	Fri Mar 23 17:16:36 2018	(r331439)
+++ head/stand/i386/libi386/vidconsole.c	Fri Mar 23 17:22:28 2018	(r331440)
@@ -449,9 +449,9 @@ vidc_term_emu(int c)
 		    fg_c = bg_c;
 		    bg_c = t;
 		    break;
-                case 22:	/* normal intensity */
-                    fg_c &= ~0x8;
-                    break;
+		case 22:	/* normal intensity */
+		    fg_c &= ~0x8;
+		    break;
 		case 30: case 31: case 32: case 33:
 		case 34: case 35: case 36: case 37:
 		    fg_c = ansi_col[args[i] - 30];


More information about the svn-src-all mailing list