Variable: org-texinfo-supported-coding-systems

org-texinfo-supported-coding-systems is a variable defined in ox-texinfo.el.gz.

Value

("US-ASCII" "UTF-8" "ISO-8859-15" "ISO-8859-1" "ISO-8859-2" "koi8-r"
 "koi8-u")

Documentation

List of coding systems supported by Texinfo, as strings.

Specified coding system will be matched against these strings. If two strings share the same prefix (e.g. "ISO-8859-1" and
"ISO-8859-15"), the most specific one has to be listed first.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
(defconst org-texinfo-supported-coding-systems
  '("US-ASCII" "UTF-8" "ISO-8859-15" "ISO-8859-1" "ISO-8859-2" "koi8-r" "koi8-u")
  "List of coding systems supported by Texinfo, as strings.
Specified coding system will be matched against these strings.
If two strings share the same prefix (e.g. \"ISO-8859-1\" and
\"ISO-8859-15\"), the most specific one has to be listed first.")