Function: edt-set-screen-width-132
edt-set-screen-width-132 is an interactive and byte-compiled function
defined in edt.el.gz.
Signature
(edt-set-screen-width-132)
Documentation
Set screen width to 132 columns.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-set-screen-width-132 ()
"Set screen width to 132 columns."
(interactive)
(if (fboundp 'edt-set-term-width-132)
(edt-set-term-width-132))
(set-frame-width nil 132)
(message "Terminal width 132"))