Variable: ps-left-footer
ps-left-footer is a customizable variable defined in ps-print.el.gz.
Value
(ps-get-buffer-name ps-header-dirpart)
Documentation
The items to display (each on a line) on the left part of the page footer.
This applies to generating PostScript.
The value should be a list of strings and symbols, each representing an entry in the PostScript array FooterLinesLeft.
Strings are inserted unchanged into the array; those representing PostScript
string literals should be delimited with PostScript string delimiters ( and
).
For symbols with bound functions, the function is called and should return a string to be inserted into the array. For symbols with bound values, the value should be a string to be inserted into the array. In either case, function or variable, the string value has PostScript string delimiters added to it.
If symbols are unbounded, they are silently ignored.
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-left-footer
(list 'ps-get-buffer-name 'ps-header-dirpart)
"The items to display (each on a line) on the left part of the page footer.
This applies to generating PostScript.
The value should be a list of strings and symbols, each representing an entry
in the PostScript array FooterLinesLeft.
Strings are inserted unchanged into the array; those representing PostScript
string literals should be delimited with PostScript string delimiters `(' and
`)'.
For symbols with bound functions, the function is called and should return a
string to be inserted into the array. For symbols with bound values, the value
should be a string to be inserted into the array. In either case, function or
variable, the string value has PostScript string delimiters added to it.
If symbols are unbounded, they are silently ignored."
:type '(repeat (choice :menu-tag "Left Footer"
:tag "Left Footer"
string symbol))
:version "21.1"
:group 'ps-print-headers)