Undo coding change, which screwed up somehow.
[emacs.git] / lisp / international / latin1-disp.el
blob49678cc95184b4ce47f76f1618d15ae0b3f81ca5
1 ;;; latin1-disp.el --- display tables for other ISO 8859 on Latin-1 terminals -*- coding: emacs-mule -*-
3 ;; Copyright (C) 2000 Free Software Foundation, Inc.
5 ;; Author: Dave Love <fx@gnu.org>
6 ;; Keywords: i18n
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
25 ;;; Commentary:
27 ;; This package sets up display of ISO 8859-n for n>1 by substituting
28 ;; Latin-1 characters and sequences of them for characters which can't
29 ;; be displayed, either because we're on a tty or because we don't
30 ;; have the relevant window system fonts available. For instance,
31 ;; Latin-9 is very similar to Latin-1, so we can display most Latin-9
32 ;; characters using the Latin-1 characters at the same code point and
33 ;; fall back on more-or-less mnemonic ASCII sequences for the rest.
35 ;; For the Latin charsets the ASCII sequences are mostly consistent
36 ;; with the Quail prefix input sequences. Latin-4 uses the Quail
37 ;; postfix sequences since a prefix method isn't defined for Latin-4.
39 ;; [A different approach is taken in the DOS display tables in
40 ;; term/internal.el, and the relevant ASCII sequences from there are
41 ;; available as an alternative; see `latin1-display-mnemonic'. Only
42 ;; these sequences are used for Cyrillic, Greek and Hebrew.]
44 ;; If you don't even have Latin-1, see iso-ascii.el and use the
45 ;; complete tables from internal.el. The ASCII sequences used here
46 ;; are mostly in the same style as iso-ascii.
48 ;;; Code:
50 ;; Ensure `standard-display-table' is set up:
51 (require 'disp-table)
53 (defconst latin1-display-sets '(latin-2 latin-3 latin-4 latin-5 latin-8
54 latin-9 cyrillic greek hebrew)
55 "The ISO8859 character sets with defined Latin-1 display sequences.
56 These are the nicknames for the sets and correspond to Emacs language
57 environments.")
59 (defgroup latin1-display ()
60 "Set up display tables for ISO8859 characters using Latin-1."
61 :version "21.1"
62 :link '(emacs-commentary-link "latin1-disp")
63 :group 'i18n)
65 (defcustom latin1-display-format "{%s}"
66 "A format string used to display the ASCII sequences.
67 The default encloses the sequence in braces, but you could just use
68 \"%s\" to avoid the braces."
69 :group 'latin1-display
70 :type 'string)
72 ;;;###autoload
73 (defcustom latin1-display nil
74 "Set up Latin-1/ASCII display for ISO8859 character sets.
75 This is done for each character set in the list `latin1-display-sets',
76 if no font is available to display it. Characters are displayed using
77 the corresponding Latin-1 characters where they match. Otherwise
78 ASCII sequences are used, mostly following the Latin prefix input
79 methods. Some different ASCII sequences are used if
80 `latin1-display-mnemonic' is non-nil.
82 Setting this variable directly does not take effect;
83 use either M-x customize of the function `latin1-display'."
84 :group 'latin1-display
85 :type 'boolean
86 :require 'latin1-disp
87 :initialize 'custom-initialize-default
88 :set (lambda (symbol value)
89 (set-default symbol value)
90 (mapc (if value
91 #'latin1-display-setup
92 #'latin1-display-reset)
93 latin1-display-sets)
94 (redraw-display)))
96 ;;;###autoload
97 (defun latin1-display (&rest sets)
98 "Set up Latin-1/ASCII display for the arguments character SETS.
99 See option `latin1-display' for the method. The members of the list
100 must be in `latin1-display-sets'. With no arguments, reset the
101 display for all of `latin1-display-sets'. See also `latin1-display-setup'."
102 (if sets
103 (progn (mapc #'latin1-display-setup sets)
104 (setq latin1-display t))
105 (mapc #'latin1-display-reset latin1-display-sets)
106 (setq latin1-display nil))
107 (redraw-display))
109 (defcustom latin1-display-mnemonic nil
110 "Non-nil means to display potentially more mnemonic sequences.
111 These are taken from the tables in `internal.el' rather than the Quail
112 input sequences."
113 :type 'boolean
114 :group 'latin1-display)
116 (defun latin1-display-char (char display &optional alt-display)
117 "Make an entry in `standard-display-table' for CHAR using string DISPLAY.
118 If ALT-DISPLAY is provided, use that instead if
119 `latin1-display-mnemonic' is non-nil. The actual string displayed is
120 formatted using `latin1-display-format'."
121 (if (and (stringp alt-display)
122 latin1-display-mnemonic)
123 (setq display alt-display))
124 (if (stringp display)
125 (standard-display-ascii char (format latin1-display-format display))
126 (aset standard-display-table char display)))
128 (defun latin1-display-identities (charset)
129 "Display each character in CHARSET as the corresponding Latin-1 character.
130 CHARSET is a symbol which is the nickname of a language environment
131 using an ISO8859 character set."
132 (if (eq charset 'cyrillic)
133 (setq charset 'cyrillic-iso))
134 (let ((i 32)
135 (set (car (remq 'ascii (get-language-info charset 'charset)))))
136 (while (<= i 127)
137 (aset standard-display-table
138 (make-char set i)
139 (vector (make-char 'latin-iso8859-1 i)))
140 (setq i (1+ i)))))
142 (defun latin1-display-reset (language)
143 "Set up the default display for each character of LANGUAGE's charset.
144 LANGUAGE is a symbol naming a language environment using an ISO8859
145 character set."
146 (if (eq language 'cyrillic)
147 (setq language 'cyrillic-iso))
148 (let ((charset (car (remq 'ascii (get-language-info language
149 'charset)))))
150 (standard-display-default (make-char charset 32)
151 (make-char charset 127)))
152 (sit-for 0))
154 (defun latin1-display-check-font (language)
155 "Return non-nil if we have a font with an encoding for LANGUAGE.
156 LANGUAGE is a symbol naming a language environment using an ISO8859
157 character set: `latin-2', `hebrew' etc."
158 (if (eq language 'cyrillic)
159 (setq language 'cyrillic-iso))
160 (let* ((info (get-language-info language 'charset))
161 (char (make-char (car (remq 'ascii info)) ?\ )))
162 (latin1-char-displayable-p char)))
164 ;; This should be moved into mule-utils or somewhere after 21.1.
165 (defun latin1-char-displayable-p (char)
166 (cond ((< char 256)
167 ;; Single byte characters are always displayable.
169 ((display-multi-font-p)
170 ;; On a window system, a character is displayable if we have
171 ;; a font for that character in the default face of the
172 ;; currently selected frame.
173 (let ((fontset (frame-parameter (selected-frame) 'font))
174 font-pattern)
175 (if (query-fontset fontset)
176 (setq font-pattern (fontset-font fontset char)))
177 (or font-pattern
178 (setq font-pattern (fontset-font "fontset-default" char)))
179 (if font-pattern
180 (progn
181 ;; Now FONT-PATTERN is a string or a cons of family
182 ;; field pattern and registry field pattern.
183 (or (stringp font-pattern)
184 (setq font-pattern (concat (or (car font-pattern) "*")
185 "-*-"
186 (cdr font-pattern))))
187 (x-list-fonts font-pattern 'default (selected-frame) 1)))))
189 (let ((coding (terminal-coding-system)))
190 (if coding
191 (let ((safe-chars (coding-system-get coding 'safe-chars))
192 (safe-charsets (coding-system-get coding 'safe-charsets)))
193 (or (and safe-chars
194 (aref safe-chars char))
195 (and safe-charsets
196 (memq (char-charset char) safe-charsets)))))))))
198 (defun latin1-display-setup (set &optional force)
199 "Set up Latin-1 display for characters in the given SET.
200 SET must be a member of `latin1-display-sets'. Normally, check
201 whether a font for SET is available and don't set the display if it
202 is. If FORCE is non-nil, set up the display regardless."
203 (cond
204 ((eq set 'latin-2)
205 (when (or force
206 (not (latin1-display-check-font set)))
207 (latin1-display-identities set)
208 (mapc
209 (lambda (l)
210 (apply 'latin1-display-char l))
211 '((?‚Æ "'C" "C'")
212 (?‚Ð "'D" "/D")
213 (?‚¦ "'S" "S'")
214 (?‚æ "'c" "c'")
215 (?‚ð "'d" "/d")
216 (?‚Å "'L" "L'")
217 (?‚ñ "'n" "n'")
218 (?‚Ñ "'N" "N'")
219 (?‚à "'r" "r'")
220 (?‚À "'R" "R'")
221 (?⦠"'s" "s'")
222 (?‚¼ "'z" "z'")
223 (?‚¬ "'Z" "Z'")
224 (?‚¡ "`A" "A;")
225 (?‚Ê "`E" "E;")
226 (?‚£ "`L" "/L")
227 (?⻠"`S" ",S")
228 (?‚Þ "`T" ",T")
229 (?‚¯ "`Z" "Z^.")
230 (?‚± "`a" "a;")
231 (?‚³ "`l" "/l")
232 (?‚ê "`e" "e;")
233 (?⼠"`s" ",s")
234 (?‚þ "`t" ",t")
235 (?‚¿ "`z" "z^.")
236 (?‚ÿ "`." "'.")
237 (?‚Ã "~A" "A(")
238 (?‚È "~C" "C<")
239 (?‚Ï "~D" "D<")
240 (?‚Ì "~E" "E<")
241 (?‚ì "~e" "e<")
242 (?‚¥ "~L" "L<")
243 (?‚Ò "~N" "N<")
244 (?‚Õ "~O" "O''")
245 (?‚Ø "~R" "R<")
246 (?‚© "~S" "S<")
247 (?‚« "~T" "T<")
248 (?‚Û "~U" "U''")
249 (?‚® "~Z" "Z<")
250 (?‚ã "~a" "a(}")
251 (?‚è "~c" "c<")
252 (?‚ï "~d" "d<")
253 (?‚µ "~l" "l<")
254 (?‚ò "~n" "n<")
255 (?‚õ "~o" "o''")
256 (?‚ø "~r" "r<")
257 (?‚¹ "~s" "s<")
258 (?‚» "~t" "t<")
259 (?‚û "~u" "u''")
260 (?‚¾ "~z" "z<")
261 (?‚· "~v" "'<") ; ?‚¢ in latin-pre
262 (?‚¢ "~~" "'(")
263 (?‚ù "uu" "u^0")
264 (?‚Ù "UU" "U^0")
265 (?‚Ä "\"A")
266 (?‚ä "\"a")
267 (?‚Ë "\"E" "E:")
268 (?‚ë "\"e")
269 (?‚½ "''" "'")
270 (?‚· "'<") ; Lynx's rendering of caron
271 ))))
273 ((eq set 'latin-3)
274 (when (or force
275 (not (latin1-display-check-font set)))
276 (latin1-display-identities set)
277 (mapc
278 (lambda (l)
279 (apply 'latin1-display-char l))
280 '((?ƒ¡ "/H")
281 (?Ģ "~`" "'(")
282 (?ƒ¦ "^H" "H^")
283 (?Ħ "^h" "h^")
284 (?ĩ ".I" "I^.")
285 (?Ļ ",S")
286 (?ƒ« "~G" "G(")
287 (?ƒ¬ "^J" "J^")
288 (?ƒ¯ ".Z" "Z^.")
289 (?ı "/h")
290 (?ƒ¹ ".i" "i^.")
291 (?ļ ",s")
292 (?ƒ» "~g" "g(")
293 (?ƒ¼ "^j" "j^")
294 (?ƒ¿ ".Z" "z^.")
295 (?ā ".c" "C^.")
296 (?Į "^C" "C^")
297 (?ƒÕ ".G" "G^.")
298 (?į "^G" "G^")
299 (?ƒÝ "~U" "U(")
300 (?ƒÞ "^S" "S^")
301 (?Č ".C" "c^.")
302 (?ľ "^c" "c^")
303 (?ƒõ ".g" "g^.")
304 (?ƒø "^g" "g^")
305 (?ƒý "~u" "u(")
306 (?ƒþ "^s" "s^")
307 (?ƒÿ "/." "^.")))))
309 ((eq set 'latin-4)
310 (when (or force
311 (not (latin1-display-check-font set)))
312 (latin1-display-identities set)
313 (mapc
314 (lambda (l)
315 (apply 'latin1-display-char l))
316 '((?„¡ "A," "A;")
317 (?„¢ "k/" "kk")
318 (?„£ "R," ",R")
319 (?„¥ "I~" "?I")
320 (?„¦ "L," ",L")
321 (?„© "S~" "S<")
322 (?㻠"E-")
323 (?„« "G," ",G")
324 (?„¬ "T/" "/T")
325 (?„® "Z~" "Z<")
326 (?„± "a," "a;")
327 (?„² "';")
328 (?„³ "r," ",r")
329 (?„µ "i~" "~i")
330 (?㦠"l," ",l")
331 (?„· "'<")
332 (?„¹ "s~" "s<")
333 (?㼠"e-")
334 (?„» "g," ",g")
335 (?„¼ "t/" "/t")
336 (?„½ "N/" "NG")
337 (?„¾ "z~" "z<")
338 (?„¿ "n/" "ng")
339 (?„À "A-")
340 (?„Ç "I," "I;")
341 (?„È "C~" "C<")
342 (?„Ê "E," "E;")
343 (?„Ì "E." "E^.")
344 (?„Ï "I-")
345 (?„Ñ "N," ",N")
346 (?„Ò "O-")
347 (?„Ó "K," ",K")
348 (?„Ù "U," "U;")
349 (?„Ý "U~" "~U")
350 (?„Þ "U-")
351 (?„à "a-")
352 (?„ç "i," "i;")
353 (?„è "c~" "c<")
354 (?„ê "e," "e;")
355 (?„ì "e." "e^.")
356 (?„ï "i-")
357 (?„ð "d/" "/d")
358 (?„ñ "n," ",n")
359 (?„ò "o-")
360 (?„ó "k," ",k")
361 (?„ù "u," "u;")
362 (?„ý "u~" "~u")
363 (?„þ "u-")
364 (?„ÿ "^.")))))
366 ((eq set 'latin-5)
367 (when (or force
368 (not (latin1-display-check-font set)))
369 (latin1-display-identities set)
370 (mapc
371 (lambda (l)
372 (apply 'latin1-display-char l))
373 '((?�ð "~g" "g(")
374 (?�Р"~G" "G(")
375 (?�Ý ".I" "I^.")
376 (?�þ ",s")
377 (?�Þ ",S")
378 (?�ê "^e" "e<") ; from latin-post
379 (?�ì ".e" "e^.")
380 (?�ï "\"i" "i-") ; from latin-post
381 (?�ý ".i" "i.")))))
383 ((eq set 'latin-8)
384 (when (or force
385 (not (latin1-display-check-font set)))
386 (latin1-display-identities set)
387 (mapc
388 (lambda (l)
389 (apply 'latin1-display-char l))
390 '((?�¡ ".B" "B`")
391 (?�¢ ".b" "b`")
392 (?�¥ ".c" "c`")
393 (?�¤ ".C" "C`")
394 (?�¦ ".D" "D`")
395 (?�« ".d" "d`")
396 (?�¸ "`w")
397 (?�¨ "`W")
398 (?�º "'w" "w'")
399 (?�ª "'W" "W'")
400 (?�¼ "`y")
401 (?�¬ "`Y")
402 (?�± ".f" "f`")
403 (?�° ".F" "F`")
404 (?�³ ".g" "g`")
405 (?�² ".G" "G`")
406 (?�µ ".m" "m`")
407 (?�´ ".M" "M`")
408 (?�¹ ".p" "p`")
409 (?�· ".P" "P`")
410 (?�¿ ".s" "s`")
411 (?�» ".S" "S`")
412 (?�¾ "\"w")
413 (?�½ "\"W")
414 (?�ð "^w" "w^")
415 (?�Р"^W" "W^")
416 (?�÷ ".t" "t`")
417 (?�× ".T" "T`")
418 (?�þ "^y" "y^")
419 (?�Þ "^Y" "Y^")
420 (?�¯ "\"Y")))))
422 ((eq set 'latin-9)
423 (when (or force
424 (not (latin1-display-check-font set)))
425 (latin1-display-identities set)
426 (mapc
427 (lambda (l)
428 (apply 'latin1-display-char l))
429 '((?Ž¨ "~s" "s<")
430 (?Ž¦ "~S" "S<")
431 (?Ž¤ "Euro" "E=")
432 (?Ž¸ "~z" "z<")
433 (?Ž´ "~Z" "Z<")
434 (?Ž¾ "\"Y")
435 (?Ž½ "oe")
436 (?Ž¼ "OE")))))
438 ((eq set 'greek)
439 (when (or force
440 (not (latin1-display-check-font set)))
441 (mapc
442 (lambda (l)
443 (apply 'latin1-display-char l))
444 '((?†¡ "9'")
445 (?†¢ "'9")
446 (?†¯ "-M")
447 (?†µ "'%")
448 (?†¶ "'A")
449 (?†¸ "'E")
450 (?†¹ "'H")
451 (?†º "'I")
452 (?†¼ "'O")
453 (?†¾ "'Y")
454 (?†¿ "W%")
455 (?†À "i3")
456 (?†Ã "G*")
457 (?†Ä "D*")
458 (?†È "TH")
459 (?†Ë "L*")
460 (?†Î "C*")
461 (?†Ð "P*")
462 (?†Ó "S*")
463 (?†Ö "F*")
464 (?†Ø "Q*")
465 (?†Ù "W*")
466 (?†Ú "\"I")
467 (?†Û "\"Y")
468 (?†Ü "a%")
469 (?†Ý "e%")
470 (?†Þ "y%")
471 (?†ß "i%")
472 (?†à "u3")
473 (?†á "a*")
474 (?†â "b*")
475 (?†ã "g*")
476 (?†ä "d*")
477 (?†å "e*")
478 (?†æ "z*")
479 (?†ç "y*")
480 (?†è "h*")
481 (?†é "i*")
482 (?†ê "k")
483 (?†ë "l*")
484 (?†ì "m*")
485 (?†í "n*")
486 (?†î "c*")
487 (?†ð "p*")
488 (?†ñ "r*")
489 (?†ò "*s")
490 (?†ó "s*")
491 (?†ô "t*")
492 (?†õ "u")
493 (?†ö "f*")
494 (?†÷ "x*")
495 (?†ø "q*")
496 (?†ù "w*")
497 (?†ú "\"i")
498 (?†û "\"u")
499 (?†ü "'o")
500 (?†ý "'u")
501 (?†þ "'w")))
502 (mapc
503 (lambda (l)
504 (aset standard-display-table (car l) (string-to-vector (cadr l))))
505 '((?†Á "A")
506 (?†Â "B")
507 (?†Å "E")
508 (?†Æ "Z")
509 (?†Ç "H")
510 (?†É "I")
511 (?†Ê "J")
512 (?†Ì "M")
513 (?†Í "N")
514 (?†Ï "O")
515 (?†Ñ "P")
516 (?†Ô "T")
517 (?†Õ "Y")
518 (?†× "X")
519 (?†ï "o")))))
521 ((eq set 'hebrew)
522 (when (or force
523 (not (latin1-display-check-font set)))
524 ;; Don't start with identities, since we don't have definitions
525 ;; for a lot of Hebrew in internal.el. (Intlfonts is also
526 ;; missing some glyphs.)
527 (let ((i 34))
528 (while (<= i 62)
529 (aset standard-display-table
530 (make-char 'hebrew-iso8859-8 i)
531 (vector (make-char 'latin-iso8859-1 i)))
532 (setq i (1+ i))))
533 (mapc
534 (lambda (l)
535 (aset standard-display-table (car l) (string-to-vector (cadr l))))
536 '((?ˆß "=2")
537 (?ˆà "A+")
538 (?ˆá "B+")
539 (?ˆâ "G+")
540 (?ˆã "D+")
541 (?ˆä "H+")
542 (?ˆå "W+")
543 (?ˆæ "Z+")
544 (?ˆç "X+")
545 (?ˆè "Tj")
546 (?ˆé "J+")
547 (?ˆê "K%")
548 (?ˆë "K+")
549 (?ˆì "L+")
550 (?ˆí "M%")
551 (?ˆî "M+")
552 (?ˆï "N%")
553 (?ˆð "N+")
554 (?ˆñ "S+")
555 (?ˆò "E+")
556 (?ˆó "P%")
557 (?ˆô "P+")
558 (?ˆõ "Zj")
559 (?ˆö "ZJ")
560 (?ˆ÷ "Q+")
561 (?ˆø "R+")
562 (?ˆù "Sh")
563 (?ˆú "T+")))))
565 ((eq set 'cyrillic)
566 (setq set 'cyrillic-iso)
567 (when (or force
568 (not (latin1-display-check-font set)))
569 (mapc
570 (lambda (l)
571 (apply 'latin1-display-char l))
572 '((?΢ "Dj")
573 (?Σ "Gj")
574 (?Œ¤ "IE")
575 (?Ω "Lj")
576 (?λ "Nj")
577 (?Œ« "Ts")
578 (?Œ¬ "Kj")
579 (?Ψ "V%")
580 (?Œ¯ "Dzh")
581 (?α "B=")
582 (?Œ³ "â")
583 (?Ϋ "D")
584 (?Φ "Z%")
585 (?Œ· "3")
586 (?Œ¸ "U")
587 (?Œ¹ "J=")
588 (?Œ» "L=")
589 (?Œ¿ "P=")
590 (?ŒÃ "Y")
591 (?ŒÄ "è")
592 (?ή "C=")
593 (?΂ "C%")
594 (?ŒÈ "S%")
595 (?΃ "Sc")
596 (?ŒÊ "=\"")
597 (?ŒË "Y=")
598 (?ŒÌ "%\"")
599 (?ŒÍ "Ee")
600 (?ŒÎ "Yu")
601 (?ŒÏ "Ya")
602 (?΄ "b")
603 (?ŒÒ "v=")
604 (?ŒÓ "g=")
605 (?ŒÔ "g")
606 (?΅ "z%")
607 (?Œ× "z=")
608 (?ί "u")
609 (?ŒÙ "j=")
610 (?ŒÚ "k")
611 (?ŒÛ "l=")
612 (?Ά "m=")
613 (?ŒÝ "n=")
614 (?Χ "n")
615 (?Έ "p")
616 (?Ή "t=")
617 (?Ί "f=")
618 (?ξ "c=")
619 (?΍ "c%")
620 (?Ώ "s%")
621 (?Ύ "sc")
622 (?ΐ "='")
623 (?Α "y=")
624 (?Γ "%'")
625 (?Β "ee")
626 (?Δ "yu")
627 (?Ε "ya")
628 (?Œð "N0")
629 (?Θ "dj")
630 (?Η "gj")
631 (?Ι "ie")
632 (?Ν "lj")
633 (?Μ "nj")
634 (?Ξ "ts")
635 (?Ο "kj")
636 (?Œþ "v%")
637 (?Œÿ "dzh")))
638 (mapc
639 (lambda (l)
640 (aset standard-display-table (car l) (string-to-vector (cadr l))))
641 '((?Œ¡ "�Ë")
642 (?δ "S")
643 (?Œ¦ "I")
644 (?Œ§ "�Ï")
645 (?ά "J")
646 (?Œñ "�ë")
647 (?Œý "�§")
648 (?Œ­ "-")
649 (?Ρ "A")
650 (?Œ² "B")
651 (?ε "E")
652 (?μ "K")
653 (?Œ¼ "M")
654 (?Œ½ "H")
655 (?Œ¾ "O")
656 (?ŒÀ "P")
657 (?ŒÁ "C")
658 (?ŒÂ "T")
659 (?΁ "X")
660 (?ŒÐ "a")
661 (?ŒÕ "e")
662 (?ŒÞ "o")
663 (?· "c")
664 (?΋ "y")
665 (?Ό "x")
666 (?Λ "s")
667 (?Κ "i")
668 (?Œ÷ "�ï")
669 (?ο "j")))))
671 (t (error "Unsupported character set: %S" set)))
673 (sit-for 0))
675 (provide 'latin1-disp)
677 ;;; latin1-disp.el ends here