diff options
author | Kyle Evans <kevans@FreeBSD.org> | 2018-03-24 02:01:25 +0000 |
---|---|---|
committer | Kyle Evans <kevans@FreeBSD.org> | 2018-03-24 02:01:25 +0000 |
commit | bc40337bb0a00eb74f96a902f00e59e9fb76a4f5 (patch) | |
tree | 12c0d10ae6f2c70ba054d78bfa736679c767bb66 /stand/i386 | |
parent | 1c1692795a6502a226fa8da559af7d6a9b4313c0 (diff) | |
download | src-test2-bc40337bb0a00eb74f96a902f00e59e9fb76a4f5.tar.gz src-test2-bc40337bb0a00eb74f96a902f00e59e9fb76a4f5.zip |
Notes
Diffstat (limited to 'stand/i386')
-rw-r--r-- | stand/i386/libi386/vidconsole.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stand/i386/libi386/vidconsole.c b/stand/i386/libi386/vidconsole.c index 0ca24d184663..abb03e3cf89d 100644 --- a/stand/i386/libi386/vidconsole.c +++ b/stand/i386/libi386/vidconsole.c @@ -452,6 +452,10 @@ vidc_term_emu(int c) case 22: /* normal intensity */ fg_c &= ~0x8; break; + case 24: /* not underline */ + case 25: /* not blinking */ + bg_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]; |