Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Mar 2018 17:22:28 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r331440 - head/stand/i386/libi386
Message-ID:  <201803231722.w2NHMS9W030138@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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];



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803231722.w2NHMS9W030138>