Function: follow-point-visible-all-windows-p
follow-point-visible-all-windows-p is a byte-compiled function defined
in follow.el.gz.
Signature
(follow-point-visible-all-windows-p WIN-START-END)
Documentation
Non-nil when the window-point is visible in all windows.
Source Code
;; Defined in /usr/src/emacs/lisp/follow.el.gz
;; Check if point is visible in all windows.
;; (So that no one will be recentered.)
(defun follow-point-visible-all-windows-p (win-start-end)
"Non-nil when the `window-point' is visible in all windows."
(let ((res t))
(while (and res win-start-end)
(setq res (follow-pos-visible (window-point (car (car win-start-end)))
(car (car win-start-end))
win-start-end))
(setq win-start-end (cdr win-start-end)))
res))