diff lisp/term/vt200.el @ 94:23502d381550

Initial revision
author Jim Blandy <jimb@redhat.com>
date Fri, 14 Sep 1990 19:07:14 +0000
parents
children c2dbf1fe0506
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lisp/term/vt200.el	Fri Sep 14 19:07:14 1990 +0000
@@ -0,0 +1,9 @@
+(defun terminal-80-columns ()
+  (interactive)
+  (send-string-to-terminal "\033[?3l")
+  (set-screen-width 80))
+
+(defun terminal-132-columns ()
+  (interactive)
+  (send-string-to-terminal "\033[?3h")
+  (set-screen-width 132))