Function: list-coding-systems
list-coding-systems is an autoloaded, interactive and byte-compiled
function defined in mule-diag.el.gz.
Signature
(list-coding-systems &optional ARG)
Documentation
Display a list of all coding systems.
This shows the mnemonic letter, name, and description of each coding system.
With prefix ARG, the output format gets more cryptic, but still contains full information about each coding system.
Probably introduced at or before Emacs version 23.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/international/mule-diag.el.gz
;;;###autoload
(defun list-coding-systems (&optional arg)
"Display a list of all coding systems.
This shows the mnemonic letter, name, and description of each coding system.
With prefix ARG, the output format gets more cryptic,
but still contains full information about each coding system."
(interactive "P")
(with-output-to-temp-buffer "*Help*"
(list-coding-systems-1 arg)))