mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-11 09:20:51 +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))
|