Disambiguate mode line indication for utf-8 and utf-16

* lisp/international/mule-conf.el (utf-7):
* lisp/language/cyrillic.el (koi8-u): Change mnemonic letters to
?u and ?\N{cyrillic capital letter u}, respectively.
This commit is contained in:
Ulrich Müller 2023-07-06 20:36:09 +02:00 committed by Eli Zaretskii
parent 25f35957c9
commit 6c3e65a75f
2 changed files with 3 additions and 2 deletions

View file

@ -1600,7 +1600,7 @@ for decoding and encoding files, process I/O, etc."
(define-coding-system 'utf-7
"UTF-7 encoding of Unicode (RFC 2152)."
:coding-type 'utf-8
:mnemonic ?U
:mnemonic ?u
:mime-charset 'utf-7
:charset-list '(unicode)
:pre-write-conversion 'utf-7-pre-write-conversion

View file

@ -126,7 +126,8 @@ Support for Russian using koi8-r and the russian-computer input method.")
(define-coding-system 'koi8-u
"KOI8-U 8-bit encoding for Cyrillic (MIME: KOI8-U)"
:coding-type 'charset
:mnemonic ?U
;; This used to be ?U which collided with UTF-8.
:mnemonic ?\N{cyrillic capital letter u} ; У
:charset-list '(koi8-u)
:mime-charset 'koi8-u)