Variable: info-symbols-and-replacements

info-symbols-and-replacements is a variable defined in info.el.gz.

Value

((8216 . "`")
 (8217 . "'")
 (8220 . "\"")
 (8221 . "\"")
 (169 . "(C)")
 (12299 . ">>")
 (8594 . "->")
 (8658 . "=>")
 (8867 . "-|")
 (9733 . "-!-")
 (8614 . "==>")
 (8208 . "-")
 (8209 . "-")
 (8210 . "-")
 (8211 . "-")
 (8212 . "--")
 (8722 . "-")
 (8230 . "...")
 (8226 . "*"))

Documentation

A list of Unicode symbols used in Info files and their ASCII translations.

Each element should be a cons cell with its car a character and its cdr a string of ASCII characters.

Source Code

;; Defined in /usr/src/emacs/lisp/info.el.gz
;; See info-utils.c:degrade_utf8 in Texinfo for the source of the list
;; below.
(defvar info-symbols-and-replacements
  '((?\‘ . "`")
    (?\’ . "'")
    (?\“ . "\"")
    (?\” . "\"")
    (?© . "(C)")
    (?\》 . ">>")
    (?→ . "->")
    (?⇒ . "=>")
    (?⊣ . "-|")
    (?★ . "-!-")
    (?↦ . "==>")
    (?‐ . "-")
    (?‑ . "-")
    (?‒ . "-")
    (?– . "-")
    (?— . "--")
    (?− . "-")
    (?… . "...")
    (?• . "*")
    )
  "A list of Unicode symbols used in Info files and their ASCII translations.
Each element should be a cons cell with its car a character and its cdr
a string of ASCII characters.")