diff options
-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) |