diff options
| author | Toon Claes | 2017-07-14 05:53:14 -0700 |
|---|---|---|
| committer | Paul Eggert | 2017-07-14 06:00:47 -0700 |
| commit | 3bdf5b21493828bb0e8c0c6b4559a89aade0357f (patch) | |
| tree | 4abdd1a88f8c1925ac7703c149d3ff8c31a6b124 | |
| parent | 9dee1c884eb50ba282eb9dd2495c5269add25963 (diff) | |
| download | emacs-3bdf5b21493828bb0e8c0c6b4559a89aade0357f.tar.gz emacs-3bdf5b21493828bb0e8c0c6b4559a89aade0357f.zip | |
Remove Turkish ligatures from Dutch input method
* lisp/leim/quail/latin-alt.el: Remove Turkish ligatures (Bug#518).
| -rw-r--r-- | etc/NEWS | 3 | ||||
| -rw-r--r-- | lisp/leim/quail/latin-alt.el | 13 |
2 files changed, 4 insertions, 12 deletions
| @@ -358,6 +358,9 @@ variable of this kind to swap modifiers in Emacs. | |||
| 358 | --- | 358 | --- |
| 359 | ** New input methods: 'cyrillic-tuvan', 'polish-prefix'. | 359 | ** New input methods: 'cyrillic-tuvan', 'polish-prefix'. |
| 360 | 360 | ||
| 361 | --- | ||
| 362 | ** The 'dutch' input method no longer attempts to support Turkish too. | ||
| 363 | |||
| 361 | +++ | 364 | +++ |
| 362 | ** File name quoting by adding the prefix "/:" is now possible for the | 365 | ** File name quoting by adding the prefix "/:" is now possible for the |
| 363 | local part of a remote file name. Thus, if you have a directory named | 366 | local part of a remote file name. Thus, if you have a directory named |
diff --git a/lisp/leim/quail/latin-alt.el b/lisp/leim/quail/latin-alt.el index 6c0dab28b41..0a048742f4c 100644 --- a/lisp/leim/quail/latin-alt.el +++ b/lisp/leim/quail/latin-alt.el | |||
| @@ -1152,7 +1152,7 @@ Doubling the postfix separates the letter and postfix: e.g. a^^ -> a^ | |||
| 1152 | (quail-define-package | 1152 | (quail-define-package |
| 1153 | "dutch" "Dutch" "NL" t | 1153 | "dutch" "Dutch" "NL" t |
| 1154 | "Dutch character mixfix input method. | 1154 | "Dutch character mixfix input method. |
| 1155 | Caters for French and Turkish as well as Dutch. | 1155 | Caters for French and Dutch. |
| 1156 | 1156 | ||
| 1157 | | | examples | 1157 | | | examples |
| 1158 | ------------+---------+---------- | 1158 | ------------+---------+---------- |
| @@ -1163,8 +1163,6 @@ Caters for French and Turkish as well as Dutch. | |||
| 1163 | acute | \\=' | a\\=' -> á | 1163 | acute | \\=' | a\\=' -> á |
| 1164 | grave | \\=` | a\\=` -> à | 1164 | grave | \\=` | a\\=` -> à |
| 1165 | circumflex | ^ | a^ -> â | 1165 | circumflex | ^ | a^ -> â |
| 1166 | Turkish | various | i/ -> ı s, -> ş g^ -> ğ I/ -> İ | ||
| 1167 | | | S, -> Ş G^ -> Ğ | ||
| 1168 | ------------+---------+---------- | 1166 | ------------+---------+---------- |
| 1169 | | prefix | | 1167 | | prefix | |
| 1170 | ------------+---------+---------- | 1168 | ------------+---------+---------- |
| @@ -1226,15 +1224,6 @@ Doubling the postfix separates the letter and postfix: e.g. a\\='\\=' -> a\\=' | |||
| 1226 | ("I^" ?Î) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX | 1224 | ("I^" ?Î) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
| 1227 | ("O^" ?Ô) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX | 1225 | ("O^" ?Ô) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
| 1228 | ("U^" ?Û) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX | 1226 | ("U^" ?Û) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX |
| 1229 | ;; “Follow the example of the Dutch POSIX locale, using ISO-8859-9 to | ||
| 1230 | ;; cater to the many Turks in Dutch society.” Perhaps German methods | ||
| 1231 | ;; should do so too. Follow turkish-alt-postfix here. | ||
| 1232 | ("i/" ?ı) ;; LATIN SMALL LETTER I WITH NO DOT | ||
| 1233 | ("s," ?ş) ;; LATIN SMALL LETTER S WITH CEDILLA | ||
| 1234 | ("g^" ?ğ) ;; LATIN SMALL LETTER G WITH BREVE | ||
| 1235 | ("I/" ?İ) ;; LATIN CAPITAL LETTER I WITH DOT ABOVE | ||
| 1236 | ("S," ?Ş) ;; LATIN CAPITAL LETTER S WITH CEDILLA | ||
| 1237 | ("G^" ?Ğ) ;; LATIN CAPITAL LETTER G WITH BREVE | ||
| 1238 | ) | 1227 | ) |
| 1239 | 1228 | ||
| 1240 | ;; Originally from Yudit, discussed with Albertas Agejevas | 1229 | ;; Originally from Yudit, discussed with Albertas Agejevas |