Function: window-adjust-process-window-size-largest
window-adjust-process-window-size-largest is a byte-compiled function
defined in window.el.gz.
Signature
(window-adjust-process-window-size-largest PROCESS WINDOWS)
Documentation
Adjust the process window size of PROCESS.
WINDOWS is a list of windows associated with PROCESS. Choose the largest area available for displaying PROCESS's output.
Source Code
;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window-adjust-process-window-size-largest (_process windows)
"Adjust the process window size of PROCESS.
WINDOWS is a list of windows associated with PROCESS. Choose the
largest area available for displaying PROCESS's output."
(window-adjust-process-window-size #'max windows))