Variable: pixel-resolution-fine-flag

pixel-resolution-fine-flag is a variable defined in pixel-scroll.el.gz.

Value

nil

Documentation

Set scrolling resolution to pixels instead of a line.

When it is t, scrolling resolution is number of pixels obtained by frame-char-height instead of a line. When it is number, scrolling resolution is set to number of pixels specified. In case you need scrolling resolution of a pixel, set to 1. After a pixel scroll, typing C-n (next-line) or C-p (previous-line) scrolls the window to make it fully visible, and undoes the effect of the pixel-level scroll.

Source Code

;; Defined in /usr/src/emacs/lisp/pixel-scroll.el.gz
(defvar pixel-resolution-fine-flag nil
  "Set scrolling resolution to pixels instead of a line.
When it is t, scrolling resolution is number of pixels obtained
by `frame-char-height' instead of a line.  When it is number,
scrolling resolution is set to number of pixels specified.  In
case you need scrolling resolution of a pixel, set to 1.  After a
pixel scroll, typing \\[next-line] or \\[previous-line] scrolls the window to make it
fully visible, and undoes the effect of the pixel-level scroll.")