annotate lisp/term/linux.el @ 20307:a5d72b4a642f

(setup_ccl_program): Define as returning nothing.
author Andreas Schwab <schwab@suse.de>
date Fri, 21 Nov 1997 14:31:20 +0000
parents 0d9e271f24ee
children 2253ec0e71ca
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18616
8d93d6d7eb23 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 ;; The Linux console handles Latin-1 by default.
8d93d6d7eb23 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
8d93d6d7eb23 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3 (set-terminal-coding-system 'iso-latin-1)
20260
0d9e271f24ee Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents: 18616
diff changeset
4
0d9e271f24ee Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents: 18616
diff changeset
5 ;; Make Latin-1 input characters work, too.
0d9e271f24ee Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents: 18616
diff changeset
6 ;; Meta will continue to work, because the kernel
0d9e271f24ee Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents: 18616
diff changeset
7 ;; turns that into Escape.
0d9e271f24ee Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents: 18616
diff changeset
8
0d9e271f24ee Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents: 18616
diff changeset
9 (let ((value (current-input-mode)))
0d9e271f24ee Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents: 18616
diff changeset
10 ;; The third arg only matters in that it is not t or nil.
0d9e271f24ee Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents: 18616
diff changeset
11 (set-input-mode (nth 0 value) (nth 1 value) 'iso-latin-1 (nth 3 value)))