Function: ps-title-line-height
ps-title-line-height is a byte-compiled function defined in
ps-print.el.gz.
Signature
(ps-title-line-height FONT-SYM)
Documentation
The height of a title 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 title-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-title-line-height (font-sym)
"The height of a `title' 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 title-line-height is *not* the same as the point size of the font."
(get font-sym 'title-line-height))