Switch to recommended form of GPLv3 permissions notice.
[emacs.git] / lisp / term / AT386.el
blob4b7dced5c26b1f90ebfdb6dd08c97f89079815dc
1 ;;; AT386.el --- terminal support package for IBM AT keyboards -*- no-byte-compile: t -*-
3 ;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
7 ;; Keywords: terminals
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; Uses the Emacs 19 terminal initialization features --- won't work with 18.
28 ;;; Code:
30 (defun terminal-init-AT386 ()
31 "Terminal initialization function for AT386."
32 (let ((AT386-keypad-map (lookup-key input-decode-map "\e[")))
33 ;; The terminal initialization should already have set up some keys
34 (if (not (keymapp AT386-keypad-map))
35 (error "What? Your AT386 termcap/terminfo has no keycaps in it"))
37 ;; Equivalents of these are set up automatically by termcap/terminfo
38 ;; (define-key AT386-keypad-map "A" [up])
39 ;; (define-key AT386-keypad-map "B" [down])
40 ;; (define-key AT386-keypad-map "C" [right])
41 ;; (define-key AT386-keypad-map "D" [left])
43 ;; These would be set up by terminfo, but not termcap
44 (define-key AT386-keypad-map "H" [home])
45 (define-key AT386-keypad-map "Y" [end])
46 (define-key AT386-keypad-map "U" [next]) ;; PgDn
47 (define-key AT386-keypad-map "V" [prior]) ;; PgUp
48 (define-key AT386-keypad-map "@" [insert]) ;; Ins key
50 ;; These are not normally set up by either
51 (define-key AT386-keypad-map "G" [kp-5]) ;; Unlabeled center key
52 (define-key AT386-keypad-map "S" [kp-subtract])
53 (define-key AT386-keypad-map "T" [kp-add])
55 ;; Arrange for the ALT key to be equivalent to ESC
56 (define-key input-decode-map "\eN" [ALT])
57 (define-key local-function-key-map [ALT] [27])
60 ;; arch-tag: abec1b03-582f-49f8-b8cb-e2fd52ea4bd7
61 ;;; AT386.el ends here