diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-05-30 03:45:33 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-05-30 03:45:33 +0000 |
commit | c6ff3aa767586a616f90e14055804589845d2873 (patch) | |
tree | 5a4f5b72053b93456feca94927b93eac1aa79af1 /lisp/term | |
parent | 29735f2ae30d3101bf8bb534f777404648856681 (diff) | |
download | emacs-c6ff3aa767586a616f90e14055804589845d2873.tar.gz |
Just load vt100.el.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/apollo.el | 2 | ||||
-rw-r--r-- | lisp/term/vt200.el | 12 |
2 files changed, 4 insertions, 10 deletions
diff --git a/lisp/term/apollo.el b/lisp/term/apollo.el index 3b75d654c50..ffe8e6bb1a6 100644 --- a/lisp/term/apollo.el +++ b/lisp/term/apollo.el @@ -1 +1 @@ -(load "term/vt100") +(load "term/vt100" nil t) diff --git a/lisp/term/vt200.el b/lisp/term/vt200.el index e2055798f5c..8ed3ee74cc5 100644 --- a/lisp/term/vt200.el +++ b/lisp/term/vt200.el @@ -1,9 +1,3 @@ -(defun terminal-80-columns () - (interactive) - (send-string-to-terminal "\033[?3l") - (set-frame-width 80)) - -(defun terminal-132-columns () - (interactive) - (send-string-to-terminal "\033[?3h") - (set-frame-width 132)) +;; For our purposes we can treat the vt200 and vt100 alike. +;; The differences are handled by the termcap entry. +(load "term/vt100" nil t) |