Initial revision
authorJim Blandy <jimb@redhat.com>
Fri, 14 Sep 1990 19:07:14 +0000 (19:07 +0000)
committerJim Blandy <jimb@redhat.com>
Fri, 14 Sep 1990 19:07:14 +0000 (19:07 +0000)
lisp/term/vt200.el [new file with mode: 0644]

diff --git a/lisp/term/vt200.el b/lisp/term/vt200.el
new file mode 100644 (file)
index 0000000..162baec
--- /dev/null
@@ -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))