Function: ps-mule-encode-char
ps-mule-encode-char is a byte-compiled function defined in
ps-mule.el.gz.
Signature
(ps-mule-encode-char CHAR FONT-SPEC)
Source Code
;; Defined in /usr/src/emacs/lisp/ps-mule.el.gz
(defun ps-mule-encode-char (char font-spec)
(let ((encoding (ps-mule-font-spec-encoding font-spec)))
(cond ((charsetp encoding)
(encode-char char encoding))
((fboundp encoding)
(funcall encoding char))
(t
char))))