Function: pixel-bob-at-top-p
pixel-bob-at-top-p is a byte-compiled function defined in
pixel-scroll.el.gz.
Signature
(pixel-bob-at-top-p AMT)
Documentation
Return non-nil if window-start is at beginning of the current buffer.
Window must be vertically scrolled by not more than AMT pixels.
Source Code
;; Defined in /usr/src/emacs/lisp/pixel-scroll.el.gz
(defun pixel-bob-at-top-p (amt)
"Return non-nil if window-start is at beginning of the current buffer.
Window must be vertically scrolled by not more than AMT pixels."
(and (equal (window-start) (point-min))
(< (window-vscroll nil t) amt)))