1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-12 17:10:43 -08:00
emacs/lisp/term/vt200.el
1990-09-14 19:07:14 +00:00

9 lines
223 B
EmacsLisp

(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))