Variable: mm-iso-8859-x-to-15-table

mm-iso-8859-x-to-15-table is a variable defined in mm-util.el.gz.

Value

((iso-8859-1 0 164 166 168 180 184 188 189 190)
 (iso-8859-1 0 164 166 168 180 184 188 189 190 286 304 350 287 305 351))

Documentation

A table of the difference character between ISO-8859-X and ISO-8859-15.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-util.el.gz
(defvar mm-iso-8859-x-to-15-table
  (and (fboundp 'coding-system-p)
       (mm-coding-system-p 'iso-8859-15)
       (mapcar
	(lambda (cs)
	  (if (mm-coding-system-p (car cs))
	      (let ((c (string-to-char
			(decode-coding-string "\341" (car cs)))))
		(cons (char-charset c)
		      (cons
		       (- (string-to-char
			   (decode-coding-string "\341" 'iso-8859-15)) c)
		       (string-to-list (decode-coding-string (car (cdr cs))
							     (car cs))))))
	    '(gnus-charset 0)))
	mm-iso-8859-15-compatible))
  "A table of the difference character between ISO-8859-X and ISO-8859-15.")