Variable: ps-end-cut-regexp

ps-end-cut-regexp is a customizable variable defined in ps-print.el.gz.

Value

nil

Documentation

Specify regexp which is end of the region to cut out when printing.

See ps-begin-cut-regexp for more information.

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-end-cut-regexp nil
  "Specify regexp which is end of the region to cut out when printing.

See `ps-begin-cut-regexp' for more information."
  :type '(choice (const :tag "No Delimiter" nil)
		 (regexp :tag "Delimiter Regexp"))
  :version "21.1"
  :group 'ps-print-miscellany)