comparison lisp/term/linux.el @ 63552:41c37d195015

Call tty-no-underline.
author Richard M. Stallman <rms@gnu.org>
date Fri, 17 Jun 2005 14:13:47 +0000
parents 695cf19ef79e
children af1c58687bdd b7da78284d4c
comparison
equal deleted inserted replaced
63551:48de3601d94c 63552:41c37d195015
1 ;; -*- no-byte-compile: t -*- 1 ;; -*- no-byte-compile: t -*-
2 ;; The Linux console handles Latin-1 by default. 2 ;; The Linux console handles Latin-1 by default.
3 3
4 (unless (terminal-coding-system) 4 (unless (terminal-coding-system)
5 (set-terminal-coding-system 'iso-latin-1)) 5 (set-terminal-coding-system 'iso-latin-1))
6
7 ;; It can't really display underlines.
8 (tty-no-underline)
6 9
7 ;; Make Latin-1 input characters work, too. 10 ;; Make Latin-1 input characters work, too.
8 ;; Meta will continue to work, because the kernel 11 ;; Meta will continue to work, because the kernel
9 ;; turns that into Escape. 12 ;; turns that into Escape.
10 13