Variable: ps-begin-cut-regexp

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

Value

nil

Documentation

Specify regexp which is start of a region to cut out when printing.

As an example, variables ps-begin-cut-regexp and ps-end-cut-regexp may be set to "^Local Variables:" and "^End:", respectively, in order to leave out some special printing instructions from the actual print. Special printing instructions may be appended to the end of the file just like any other buffer-local variables. See section "Local Variables in Files" on Emacs manual for more information.

Variables ps-begin-cut-regexp and ps-end-cut-regexp control together what actually gets printed. Both variables may be set to nil in which case no cutting occurs.

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

As an example, variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' may be
set to \"^Local Variables:\" and \"^End:\", respectively, in order to leave out
some special printing instructions from the actual print.  Special printing
instructions may be appended to the end of the file just like any other
buffer-local variables.  See section \"Local Variables in Files\" on Emacs
manual for more information.

Variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' control together what
actually gets printed.  Both variables may be set to nil in which case no
cutting occurs."
  :type '(choice (const :tag "No Delimiter" nil)
		 (regexp :tag "Delimiter Regexp"))
  :version "21.1"
  :group 'ps-print-miscellany)