Variable: ps-line-spacing

ps-line-spacing is a customizable variable defined in ps-print.el.gz.

Value

0

Documentation

Specify line spacing, in points, for ordinary text.

Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE).

See also ps-paragraph-spacing and ps-paragraph-regexp.

To get all lines with some spacing set both ps-line-spacing and ps-paragraph-spacing variables.

This variable was added, or its default value changed, in Emacs 21.1.

Probably introduced at or before Emacs version 20.1.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defcustom ps-line-spacing 0
  "Specify line spacing, in points, for ordinary text.

Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE).

See also `ps-paragraph-spacing' and `ps-paragraph-regexp'.

To get all lines with some spacing set both `ps-line-spacing' and
`ps-paragraph-spacing' variables."
  :type '(choice :menu-tag "Line Spacing For Ordinary Text"
		 :tag "Line Spacing For Ordinary Text"
		 (number :tag "Line Spacing")
		 (cons :tag "Landscape/Portrait"
		       (number :tag "Landscape Line Spacing")
		       (number :tag "Portrait Line Spacing")))
  :version "21.1"
  :group 'ps-print-miscellany)