mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-12 17:10:43 -08:00
9 lines
223 B
EmacsLisp
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))
|