# HG changeset patch # User Richard M. Stallman # Date 738733533 0 # Node ID e010fc52b552159aaea3b9915f2fd3e14cb8f2d6 # Parent f1f4cab7f62139a420951c0909737169ea3b28a7 Just load vt100.el. diff -r f1f4cab7f621 -r e010fc52b552 lisp/term/apollo.el --- a/lisp/term/apollo.el Sun May 30 03:44:07 1993 +0000 +++ b/lisp/term/apollo.el Sun May 30 03:45:33 1993 +0000 @@ -1,1 +1,1 @@ -(load "term/vt100") +(load "term/vt100" nil t) diff -r f1f4cab7f621 -r e010fc52b552 lisp/term/vt200.el --- a/lisp/term/vt200.el Sun May 30 03:44:07 1993 +0000 +++ b/lisp/term/vt200.el Sun May 30 03:45:33 1993 +0000 @@ -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)