diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-02-19 21:45:53 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-02-19 22:04:10 +0100 |
commit | ce0a62f6c5c8ea486869360f654356777cdf918e (patch) | |
tree | 40969e28324765ab835fa7a4a11fcc268e8fd824 /gnu/services | |
parent | 7ffd6180a7c46280a5d515570e7f43552d40b4fd (diff) | |
download | patches-ce0a62f6c5c8ea486869360f654356777cdf918e.tar patches-ce0a62f6c5c8ea486869360f654356777cdf918e.tar.gz |
services: console-font: Don't emit the IUTF8 console code.
Fixes <https://bugs.gnu.org/30505>.
* gnu/services/base.scm (unicode-start): Remove 'display' call to FD for
"\x1b%G" console code.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/base.scm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 1ad7c2320a..69e211ffa3 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -679,9 +679,6 @@ to add @var{device} to the kernel's entropy pool. The service will fail if (logior (input-flags IUTF8) (termios-input-flags termios)))) - ;; See console_codes(4). - (display "\x1b%G" (fdes->outport fd)) - (tcsetattr fd (tcsetattr-action TCSAFLUSH) (set-utf8-input termios)) |