summaryrefslogtreecommitdiff
path: root/lisp/term/vt200.el
blob: 162baecd7c1cba1f3763ed8086a2f171303b27fc (plain)
1
2
3
4
5
6
7
8
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))