Function: nxml-coding-system-name
nxml-coding-system-name is a byte-compiled function defined in
nxml-mode.el.gz.
Signature
(nxml-coding-system-name CODING-SYSTEM)
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/nxml-mode.el.gz
(defun nxml-coding-system-name (coding-system)
(setq coding-system (coding-system-base coding-system))
(symbol-name
(if (nxml-coding-system-member coding-system nxml-utf-16-coding-systems)
'utf-16
(or (coding-system-get coding-system 'mime-charset)
coding-system))))