diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-09-21 21:06:26 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-09-21 21:06:26 +0000 |
commit | e1ed6ee4d577f4c13176c7778159ba21d3344272 (patch) | |
tree | 2756f6e850ace05c09ed6052508094536fae9f03 /lisp/emulation | |
parent | e23787ff369ae2c5af836b77463c219a70200a18 (diff) | |
download | emacs-e1ed6ee4d577f4c13176c7778159ba21d3344272.tar.gz |
(edt-set-term-width-80, edt-set-term-width-132):
Terminal-specific functions.
Don't redefine edt-set-screen-width-80 and edt-set-screen-width-132.
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/edt-vt100.el | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/lisp/emulation/edt-vt100.el b/lisp/emulation/edt-vt100.el index cecf335bf97..7dd5df400c0 100644 --- a/lisp/emulation/edt-vt100.el +++ b/lisp/emulation/edt-vt100.el @@ -35,14 +35,13 @@ ;; Get keyboard function key mapping to EDT keys. (load "edt-lk201" nil t) -(defun edt-set-screen-width-80 () - "Set screen width to 80 columns." - (interactive) - (vt100-wide-mode -1) - (message "Screen width 80")) - -(defun edt-set-screen-width-132 () - "Set screen width to 132 columns." - (interactive) - (vt100-wide-mode 1) - (message "Screen width 132")) +;; The following functions are called by the EDT screen width commands defined +;; in edt.el. + +(defun edt-set-term-width-80 () + "Set terminal width to 80 columns." + (vt100-wide-mode -1)) + +(defun edt-set-term-width-132 () + "Set terminal width to 132 columns." + (vt100-wide-mode 1)) |