Function: dos-mode4350

dos-mode4350 is an interactive and byte-compiled function defined in dos-fns.el.gz.

Signature

(dos-mode4350)

Documentation

Change the number of rows to 43 or 50.

Emacs always tries to set the screen height to 50 rows first. If this fails, it will try to set it to 43 rows, on the assumption that your video hardware might not support 50-line mode.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dos-fns.el.gz
(defun dos-mode4350 ()
  "Change the number of rows to 43 or 50.
Emacs always tries to set the screen height to 50 rows first.
If this fails, it will try to set it to 43 rows, on the assumption
that your video hardware might not support 50-line mode."
  (interactive)
  (set-frame-size (selected-frame) 80 50)
  (if (eq (frame-height (selected-frame)) 50)
      nil  ; the original built-in function returned nil
    (set-frame-size (selected-frame) 80 43)))