Function: lpr-eval-switch
lpr-eval-switch is a byte-compiled function defined in lpr.el.gz.
Signature
(lpr-eval-switch ARG)
Source Code
;; Defined in /usr/src/emacs/lisp/lpr.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Functions hacked from `ps-print' package.
;; Dynamic evaluation
(defun lpr-eval-switch (arg)
(cond ((stringp arg) arg)
((functionp arg) (funcall arg))
((symbolp arg) (symbol-value arg))
((consp arg) (apply (car arg) (cdr arg)))
(t nil)))