aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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))