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 | 9bd27e853d0f6bb7cb93cfe772df07050d8dd7e7 (patch) | |
tree | 6d7998bc251a2e4c9eaeb454376b8fde9b2c6c38 /lisp/term/vt200.el | |
parent | 4595014a199435ac28cb7a282060b833d84f724a (diff) | |
download | emacs-9bd27e853d0f6bb7cb93cfe772df07050d8dd7e7.tar.gz |
Just load vt100.el.
Diffstat (limited to 'lisp/term/vt200.el')
-rw-r--r-- | lisp/term/vt200.el | 12 |
1 files changed, 3 insertions, 9 deletions
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) |