Function: ps-comment-string
ps-comment-string is a byte-compiled function defined in
ps-print.el.gz.
Signature
(ps-comment-string STR VALUE)
Documentation
Return a comment string like ";; STR = VALUE".
Source Code
;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defun ps-comment-string (str value)
"Return a comment string like \";; STR = VALUE\"."
(format ";; %s = %s" str (ps-value-string value)))