Function: latin1-display-identities

latin1-display-identities is a byte-compiled function defined in latin1-disp.el.gz.

Signature

(latin1-display-identities CHARSET)

Documentation

Display each character in CHARSET as the corresponding Latin-1 character.

CHARSET is a symbol which is the nickname of a language environment using an ISO8859 character set.

Source Code

;; Defined in /usr/src/emacs/lisp/international/latin1-disp.el.gz
(defun latin1-display-identities (charset)
  "Display each character in CHARSET as the corresponding Latin-1 character.
CHARSET is a symbol which is the nickname of a language environment
using an ISO8859 character set."
  (if (eq charset 'cyrillic)
      (setq charset 'cyrillic-iso))
  (let ((i 128)
	(set (car (remq 'ascii (get-language-info charset 'charset)))))
    (while (<= i 255)
      (let ((ch (decode-char set i)))
	(if ch
	    (aset standard-display-table ch (vector i))))
      (setq i (1+ i)))))