mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-21 18:23:59 +00:00
10 lines
221 B
EmacsLisp
10 lines
221 B
EmacsLisp
(defun terminal-80-columns ()
|
|
(interactive)
|
|
(send-string-to-terminal "\033[?3l")
|
|
(set-frame-width 80))
|
|
|
|
(defun terminal-132-columns ()
|
|
(interactive)
|
|
(send-string-to-terminal "\033[?3h")
|
|
(set-frame-width 132))
|