Variable: mm-extra-numeric-entities

mm-extra-numeric-entities is a customizable variable defined in mm-util.el.gz.

Value

((128 . 8364)
 (130 . 8218)
 (131 . 402)
 (132 . 8222)
 (133 . 8230)
 (134 . 8224)
 (135 . 8225)
 (136 . 710)
 (137 . 8240)
 (138 . 352)
 (139 . 8249)
 (140 . 338)
 (142 . 381)
 (145 . 8216)
 (146 . 8217)
 (147 . 8220)
 (148 . 8221)
 (149 . 8226)
 (150 . 8211)
 (151 . 8212)
 (152 . 732)
 (153 . 8482)
 (154 . 353)
 (155 . 8250)
 (156 . 339)
 (158 . 382)
 (159 . 376))

Documentation

Alist of extra numeric entities and characters other than ISO 10646.

This table is used for decoding extra numeric entities to characters, like "€" to the euro sign, mainly in html messages.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-util.el.gz
(defcustom mm-extra-numeric-entities
  (mapcar
   (lambda (item)
     (cons (car item) (mm-ucs-to-char (cdr item))))
   '((#x80 . #x20AC) (#x82 . #x201A) (#x83 . #x0192) (#x84 . #x201E)
     (#x85 . #x2026) (#x86 . #x2020) (#x87 . #x2021) (#x88 . #x02C6)
     (#x89 . #x2030) (#x8A . #x0160) (#x8B . #x2039) (#x8C . #x0152)
     (#x8E . #x017D) (#x91 . #x2018) (#x92 . #x2019) (#x93 . #x201C)
     (#x94 . #x201D) (#x95 . #x2022) (#x96 . #x2013) (#x97 . #x2014)
     (#x98 . #x02DC) (#x99 . #x2122) (#x9A . #x0161) (#x9B . #x203A)
     (#x9C . #x0153) (#x9E . #x017E) (#x9F . #x0178)))
  "Alist of extra numeric entities and characters other than ISO 10646.
This table is used for decoding extra numeric entities to characters,
like \"€\" to the euro sign, mainly in html messages."
  :type '(alist :key-type character :value-type character)
  :group 'mime)