Function: nxml-unsuitable-coding-system-message
nxml-unsuitable-coding-system-message is a byte-compiled function
defined in nxml-mode.el.gz.
Signature
(nxml-unsuitable-coding-system-message CODING-SYSTEM &optional ENC-NAME)
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/nxml-mode.el.gz
(defun nxml-unsuitable-coding-system-message (coding-system &optional enc-name)
(if (nxml-coding-system-unicode-p coding-system)
"Cannot translate some characters to Unicode"
(format "Cannot encode some characters with %s"
(or enc-name
(nxml-coding-system-name coding-system)))))