Function: coding-system-mnemonic
coding-system-mnemonic is a byte-compiled function defined in
mule.el.gz.
Signature
(coding-system-mnemonic CODING-SYSTEM)
Documentation
Return the mnemonic character of CODING-SYSTEM.
The mnemonic character of a coding system is used in mode line to indicate the coding system. If CODING-SYSTEM is nil, return ?=.
Source Code
;; Defined in /usr/src/emacs/lisp/international/mule.el.gz
(defun coding-system-mnemonic (coding-system)
"Return the mnemonic character of CODING-SYSTEM.
The mnemonic character of a coding system is used in mode line to
indicate the coding system. If CODING-SYSTEM is nil, return ?=."
(plist-get (coding-system-plist coding-system) :mnemonic))