Support keyboard input and display of U+1E9E

* lisp/international/latin1-disp.el (latin1-display):
* lisp/international/iso-transl.el (iso-transl-char-map)
(iso-transl-language-alist): Add U+1E9E capital sharp S.
This commit is contained in:
Eli Zaretskii 2022-07-31 11:22:29 +03:00
parent 57100e0a36
commit 92ec08bc46
2 changed files with 3 additions and 0 deletions

View file

@ -76,6 +76,7 @@
("\"E" . [])
("\"I" . [])
("\"O" . [])
("\"S" . [?ẞ])
("\"U" . [])
("\"a" . [])
("\"e" . [])
@ -324,6 +325,7 @@ sequence VECTOR. (VECTOR is normally one character long.)")
("German"
("A" . [])
("O" . [])
("S" . [?ẞ])
("U" . [])
("a" . [])
("o" . [])

View file

@ -124,6 +124,7 @@ display for all of `latin1-display-sets'. See also
(?\™ "TM") ;; TRADE MARK SIGN
(?\ ">") ;; SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
(?• "·")
(?ẞ "SS") ;; LATIN CAPITAL LETTER SHARP S
)))
(setq latin1-display t))
(mapc #'latin1-display-reset latin1-display-sets)