(load-time-value): Update for the name-change `outbuffer' to
[emacs.git] / lisp / emulation / edt-vt100.el
blobbffa1b721f8c6a0f323157e54b1f5ec705f601b7
1 ;;; edt-vt100.el --- enhanced EDT keypad mode emulation for VT series terminals
3 ;; Copyright (C) 1986, 1992, 1993, 1995, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Kevin Gallagher <Kevin.Gallagher@boeing.com>
7 ;; Maintainer: Kevin Gallagher <Kevin.Gallagher@boeing.com>
8 ;; Keywords: emulations
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; See edt-user.doc in the Emacs etc directory.
29 ;; ====================================================================
32 ;;; Code:
34 ;; Get keyboard function key mapping to EDT keys.
35 (load "edt-lk201" nil t)
37 ;; The following functions are called by the EDT screen width commands defined
38 ;; in edt.el.
40 (declare-function vt100-wide-mode "../term/vt100" (&optional arg))
42 (defun edt-set-term-width-80 ()
43 "Set terminal width to 80 columns."
44 (vt100-wide-mode -1))
46 (defun edt-set-term-width-132 ()
47 "Set terminal width to 132 columns."
48 (vt100-wide-mode 1))
50 ;; arch-tag: c9f10c95-915f-44b5-93ff-4654abca4dd4
51 ;;; edt-vt100.el ends here