Add 2012 to FSF copyright years for Emacs files
[bpt/emacs.git] / lisp / emulation / edt-vt100.el
CommitLineData
e8af40ee 1;;; edt-vt100.el --- enhanced EDT keypad mode emulation for VT series terminals
be010748 2
acaf905b 3;; Copyright (C) 1986, 1992-1993, 1995, 2002-2012
95df8112 4;; Free Software Foundation, Inc.
c0e42a4d 5
8830e9da
EZ
6;; Author: Kevin Gallagher <Kevin.Gallagher@boeing.com>
7;; Maintainer: Kevin Gallagher <Kevin.Gallagher@boeing.com>
c0e42a4d 8;; Keywords: emulations
bd78fa1d 9;; Package: edt
c0e42a4d
KH
10
11;; This file is part of GNU Emacs.
12
ed0f493f 13;; GNU Emacs is free software: you can redistribute it and/or modify
c0e42a4d 14;; it under the terms of the GNU General Public License as published by
ed0f493f
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
c0e42a4d
KH
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
ed0f493f 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
c0e42a4d 25
e8af40ee 26;;; Commentary:
c0e42a4d 27
a50cd91a 28;; See Info node `edt' for more details.
c0e42a4d
KH
29
30;; ====================================================================
31\f
e8af40ee
PJ
32
33;;; Code:
34
c0e42a4d
KH
35;; Get keyboard function key mapping to EDT keys.
36(load "edt-lk201" nil t)
37
9574d70f
KH
38;; The following functions are called by the EDT screen width commands defined
39;; in edt.el.
40
153ef845
DN
41(declare-function vt100-wide-mode "../term/vt100" (&optional arg))
42
9574d70f
KH
43(defun edt-set-term-width-80 ()
44 "Set terminal width to 80 columns."
45 (vt100-wide-mode -1))
46
47(defun edt-set-term-width-132 ()
48 "Set terminal width to 132 columns."
49 (vt100-wide-mode 1))
e8af40ee
PJ
50
51;;; edt-vt100.el ends here