Function: ps-line-height
ps-line-height is a byte-compiled function defined in ps-print.el.gz.
Signature
(ps-line-height FONT-SYM)
Documentation
The height of a line, for generating PostScript.
This is the value that ps-print uses to determine the height, y-dimension, of the lines of text it has printed, and thus affects the point at which page-breaks are placed. The line-height is *not* the same as the point size of the font.
Source Code
;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defsubst ps-line-height (font-sym)
"The height of a line, for generating PostScript.
This is the value that ps-print uses to determine the height,
y-dimension, of the lines of text it has printed, and thus affects the
point at which page-breaks are placed.
The line-height is *not* the same as the point size of the font."
(get font-sym 'line-height))