Function: ps-value-string

ps-value-string is a byte-compiled function defined in ps-print.el.gz.

Signature

(ps-value-string VAL)

Documentation

Return a string representation of VAL. Used by ps-print-quote.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defun ps-value-string (val)
  "Return a string representation of VAL.  Used by `ps-print-quote'."
  (cond ((null val)
	 "nil")
	((eq val t)
	 "t")
	((or (symbolp val) (listp val))
	 (format "'%S" val))
	(t
	 (format "%S" val))))