Function: move-to-window-group-line
move-to-window-group-line is a byte-compiled function defined in
window.el.gz.
Signature
(move-to-window-group-line ARG)
Documentation
Position point relative to the current group of windows.
When a grouping mode (such as Follow Mode) is not active, this
function is identical to move-to-window-line.
ARG nil means position point at center of the window group. Else, ARG specifies the vertical position within the window group; zero means top of first window in the group, negative means relative to the bottom of the last window in the group.
Source Code
;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun move-to-window-group-line (arg)
"Position point relative to the current group of windows.
When a grouping mode (such as Follow Mode) is not active, this
function is identical to `move-to-window-line'.
ARG nil means position point at center of the window group.
Else, ARG specifies the vertical position within the window
group; zero means top of first window in the group, negative
means relative to the bottom of the last window in the group."
(if (functionp move-to-window-group-line-function)
(funcall move-to-window-group-line-function arg)
(move-to-window-line arg)))