]> git.eshelyaron.com Git - emacs.git/commitdiff
Disambiguate mode line indication for utf-8 and utf-16
authorUlrich Müller <ulm@gentoo.org>
Thu, 6 Jul 2023 18:36:09 +0000 (20:36 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 8 Jul 2023 08:32:23 +0000 (11:32 +0300)
* 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.

lisp/international/mule-conf.el
lisp/language/cyrillic.el

index a27aaf9e522b0db8b073dd6cdeab7e6628a6d620..f65f124b633f2ecb5d54e80d4b2c58e35c0a78b0 100644 (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
index 7af87e65703a5eb8463aff54b0c36ca327ef15ad..f923c84e221a6a74dfee566cd6d5e8c0d4f493da 100644 (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)