Function: window-resizable-p
window-resizable-p is a byte-compiled function defined in
window.el.gz.
Signature
(window-resizable-p WINDOW DELTA &optional HORIZONTAL IGNORE PIXELWISE)
Documentation
Return t if WINDOW can be resized vertically by DELTA lines.
WINDOW must be a valid window and defaults to the selected one.
For the meaning of the arguments of this function see the
doc-string of window-resizable.
Source Code
;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window-resizable-p (window delta &optional horizontal ignore pixelwise)
"Return t if WINDOW can be resized vertically by DELTA lines.
WINDOW must be a valid window and defaults to the selected one.
For the meaning of the arguments of this function see the
doc-string of `window-resizable'."
(setq window (window-normalize-window window))
(if (> delta 0)
(>= (window--resizable
window delta horizontal ignore nil nil nil pixelwise)
delta)
(<= (window--resizable
window delta horizontal ignore nil nil nil pixelwise)
delta)))