(w32_execvp): New function; wrapper for `execvp'.
[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
5fd6d89f 3;; Copyright (C) 1986, 1992, 1993, 1995, 2002, 2003, 2004,
ceb4c4d3 4;; 2005, 2006 Free Software Foundation, Inc.
c0e42a4d 5
d61e2ad9
RS
6;; Author: Kevin Gallagher <kevingal@onramp.net>
7;; Maintainer: Kevin Gallagher <kevingal@onramp.net>
c0e42a4d
KH
8;; Keywords: emulations
9
10;; This file is part of GNU Emacs.
11
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 2, or (at your option)
15;; any later version.
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
b578f267 23;; along with GNU Emacs; see the file COPYING. If not, write to the
3a35cf56
LK
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
c0e42a4d 26
e8af40ee 27;;; Commentary:
c0e42a4d 28
29978f0b 29;; See edt-user.doc in the Emacs etc directory.
c0e42a4d
KH
30
31;; ====================================================================
32\f
e8af40ee
PJ
33
34;;; Code:
35
c0e42a4d
KH
36;; Get keyboard function key mapping to EDT keys.
37(load "edt-lk201" nil t)
38
9574d70f
KH
39;; The following functions are called by the EDT screen width commands defined
40;; in edt.el.
41
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 49
ab5796a9 50;;; arch-tag: c9f10c95-915f-44b5-93ff-4654abca4dd4
e8af40ee 51;;; edt-vt100.el ends here