Function: window-adjust-process-window-size-smallest

window-adjust-process-window-size-smallest is a byte-compiled function defined in window.el.gz.

Signature

(window-adjust-process-window-size-smallest PROCESS WINDOWS)

Documentation

Adjust the process window size of PROCESS.

WINDOWS is a list of windows associated with PROCESS. Choose the smallest area available for displaying PROCESS's output.

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window-adjust-process-window-size-smallest (_process windows)
  "Adjust the process window size of PROCESS.
WINDOWS is a list of windows associated with PROCESS.  Choose the
smallest area available for displaying PROCESS's output."
  (window-adjust-process-window-size #'min windows))