Variable: ps-right-header
ps-right-header is a customizable variable defined in ps-print.el.gz.
Value
("/pagenumberstring load" ps-time-stamp-locale-default
ps-time-stamp-hh:mm:ss)
Documentation
The items to display (each on a line) on the right part of the page header.
This applies to generating PostScript.
See the variable ps-left-header for a description of the format of this
variable.
There are the following basic functions implemented:
ps-time-stamp-locale-default Return the locale's "preferred" date
as, for example, "06/18/01".
ps-time-stamp-hh:mm:ss Return time as "17:28:31".
ps-time-stamp-mon-dd-yyyy Return date as "Jun 18 2001".
ps-time-stamp-yyyy-mm-dd Return date as "2001-06-18" (ISO
date).
ps-time-stamp-iso8601 Alias for ps-time-stamp-yyyy-mm-dd.
You can also create your own time stamp function by using format-time-string
(which see).
This variable was added, or its default value changed, in Emacs 20.
Source Code
;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defcustom ps-right-header
(list "/pagenumberstring load"
'ps-time-stamp-locale-default 'ps-time-stamp-hh:mm:ss)
"The items to display (each on a line) on the right part of the page header.
This applies to generating PostScript.
See the variable `ps-left-header' for a description of the format of this
variable.
There are the following basic functions implemented:
`ps-time-stamp-locale-default' Return the locale's \"preferred\" date
as, for example, \"06/18/01\".
`ps-time-stamp-hh:mm:ss' Return time as \"17:28:31\".
`ps-time-stamp-mon-dd-yyyy' Return date as \"Jun 18 2001\".
`ps-time-stamp-yyyy-mm-dd' Return date as \"2001-06-18\" (ISO
date).
`ps-time-stamp-iso8601' Alias for `ps-time-stamp-yyyy-mm-dd'.
You can also create your own time stamp function by using `format-time-string'
\(which see)."
:type '(repeat (choice :menu-tag "Right Header"
:tag "Right Header"
string symbol))
:version "20"
:group 'ps-print-headers)