Variable: ps-line-number-start

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

Value

1

Documentation

Specify the starting point in the interval given by ps-line-number-step.

For example, if ps-line-number-step is set to 3 and ps-line-number-start is set to 3, the printing will look like:

      one line
      one line
    3 one line
      one line
      one line
    6 one line
      one line
      one line
    9 one line
      one line
      ...

The values for ps-line-number-start:

   * If ps-line-number-step is an integer, must be between 1 and the value of
     ps-line-number-step inclusive.

   * If ps-line-number-step is set to zebra, must be between 1 and the
     value of ps-zebra-stripe-height inclusive. Use this combination if you
     wish that line number be relative to zebra stripes.

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

Probably introduced at or before Emacs version 20.1.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defcustom ps-line-number-start 1
  "Specify the starting point in the interval given by `ps-line-number-step'.

For example, if `ps-line-number-step' is set to 3 and `ps-line-number-start' is
set to 3, the printing will look like:

      one line
      one line
    3 one line
      one line
      one line
    6 one line
      one line
      one line
    9 one line
      one line
      ...

The values for `ps-line-number-start':

   * If `ps-line-number-step' is an integer, must be between 1 and the value of
     `ps-line-number-step' inclusive.

   * If `ps-line-number-step' is set to `zebra', must be between 1 and the
     value of `ps-zebra-stripe-height' inclusive.  Use this combination if you
     wish that line number be relative to zebra stripes."
  :type '(integer :tag "Start Step Interval")
  :version "20"
  :group 'ps-print-miscellany)