mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
Support Capital sharp S in German input methods
* lisp/leim/quail/latin-post.el ("german-postfix"):
* lisp/leim/quail/latin-pre.el ("german-prefix"): Add Capital
sharp S. (Bug#30988)
* etc/NEWS: Mention the support of Capital sharp S.
This commit is contained in:
parent
b9340aad79
commit
3409fe0362
3 changed files with 7 additions and 1 deletions
3
etc/NEWS
3
etc/NEWS
|
|
@ -121,6 +121,9 @@ regular expression was previously invalid, but is now accepted:
|
||||||
|
|
||||||
x\{32768\}
|
x\{32768\}
|
||||||
|
|
||||||
|
---
|
||||||
|
** The German prefix and postfix input methods now support Capital sharp S.
|
||||||
|
|
||||||
|
|
||||||
* Editing Changes in Emacs 27.1
|
* Editing Changes in Emacs 27.1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1103,6 +1103,7 @@ szz -> sz
|
||||||
("UE" ?Ü)
|
("UE" ?Ü)
|
||||||
("ue" ?ü)
|
("ue" ?ü)
|
||||||
("sz" ?ß)
|
("sz" ?ß)
|
||||||
|
("SZ" ?ẞ)
|
||||||
|
|
||||||
("AEE" ["AE"])
|
("AEE" ["AE"])
|
||||||
("aee" ["ae"])
|
("aee" ["ae"])
|
||||||
|
|
@ -1111,6 +1112,7 @@ szz -> sz
|
||||||
("UEE" ["UE"])
|
("UEE" ["UE"])
|
||||||
("uee" ["ue"])
|
("uee" ["ue"])
|
||||||
("szz" ["sz"])
|
("szz" ["sz"])
|
||||||
|
("SZZ" ["SZ"])
|
||||||
("ge" ["ge"])
|
("ge" ["ge"])
|
||||||
("eue" ["eue"])
|
("eue" ["eue"])
|
||||||
("Eue" ["Eue"])
|
("Eue" ["Eue"])
|
||||||
|
|
|
||||||
|
|
@ -361,13 +361,14 @@ Key translation rules are:
|
||||||
"german-prefix" "German" "DE>" t
|
"german-prefix" "German" "DE>" t
|
||||||
"German (Deutsch) input method with prefix modifiers
|
"German (Deutsch) input method with prefix modifiers
|
||||||
Key translation rules are:
|
Key translation rules are:
|
||||||
\"A -> Ä -> \"O -> Ö \"U -> Ü \"s -> ß
|
\"A -> Ä -> \"O -> Ö \"S -> ẞ \"U -> Ü \"s -> ß
|
||||||
" nil t nil nil nil nil nil nil nil nil t)
|
" nil t nil nil nil nil nil nil nil nil t)
|
||||||
|
|
||||||
(quail-define-rules
|
(quail-define-rules
|
||||||
("\"A" ?Ä)
|
("\"A" ?Ä)
|
||||||
("\"O" ?Ö)
|
("\"O" ?Ö)
|
||||||
("\"U" ?Ü)
|
("\"U" ?Ü)
|
||||||
|
("\"S" ?ẞ)
|
||||||
("\"a" ?ä)
|
("\"a" ?ä)
|
||||||
("\"o" ?ö)
|
("\"o" ?ö)
|
||||||
("\"u" ?ü)
|
("\"u" ?ü)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue