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