aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-30 03:45:33 +0000
committerRichard M. Stallman1993-05-30 03:45:33 +0000
commit9bd27e853d0f6bb7cb93cfe772df07050d8dd7e7 (patch)
tree6d7998bc251a2e4c9eaeb454376b8fde9b2c6c38
parent4595014a199435ac28cb7a282060b833d84f724a (diff)
downloademacs-9bd27e853d0f6bb7cb93cfe772df07050d8dd7e7.tar.gz
emacs-9bd27e853d0f6bb7cb93cfe772df07050d8dd7e7.zip
Just load vt100.el.
-rw-r--r--lisp/term/apollo.el2
-rw-r--r--lisp/term/vt200.el12
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 @@
1(defun terminal-80-columns () 1;; For our purposes we can treat the vt200 and vt100 alike.
2 (interactive) 2;; The differences are handled by the termcap entry.
3 (send-string-to-terminal "\033[?3l") 3(load "term/vt100" nil t)
4 (set-frame-width 80))
5
6(defun terminal-132-columns ()
7 (interactive)
8 (send-string-to-terminal "\033[?3h")
9 (set-frame-width 132))