emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#32371: closed (iso-transl-language-alist for Esper


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#32371: closed (iso-transl-language-alist for Esperanto: garbled encoding )
Date: Tue, 07 Aug 2018 15:46:01 +0000

Your message dated Tue, 07 Aug 2018 18:45:23 +0300
with message-id <address@hidden>
and subject line Re: bug#32371: iso-transl-language-alist for Esperanto: 
garbled encoding
has caused the debbugs.gnu.org bug report #32371,
regarding iso-transl-language-alist for Esperanto: garbled encoding 
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
32371: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32371
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: iso-transl-language-alist for Esperanto: garbled encoding Date: Sun, 05 Aug 2018 21:55:49 +0000 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux)
Package: emacs
Tags: patch

        Apparently the value of iso-transl-language-alist entry for
        Esperanto somehow (c38e0c97?) got interpreted as ISO-8859-1
        instead of the intended ISO-8859-3.

        For instance, I know of no valid use for Æ or Ø in Esperanto,
        while reinterpreting the same codes as ISO-8859-3 yields Ĉ and
        Ĝ, respectively, which are characters used by the language.

;; Language-specific translation lists.
(defvar iso-transl-language-alist
  '(("Esperanto"
     ("C"  . [?Æ])
     ("G"  . [?Ø])

        Please thus consider the patch MIMEd.

-- 
FSF associate member #7257  http://am-1.org/~ivan/
From: Ivan Shmakov <address@hidden>
Subject: Reinterpret Esperanto characters in iso-transl as iso-8859-3.
Date: Sun, 05 Aug 2018 21:45:46 +0000

* lisp/international/iso-transl.el (iso-transl-language-alist):
Fixed: reinterpret Esperanto characters as iso-8859-3 (were:
iso-8859-1.)  (Bug#-XXX-)
---

--- a/lisp/international/iso-transl.el
+++ b/lisp/international/iso-transl.el
@@ -234,18 +234,18 @@
 ;; Language-specific translation lists.
 (defvar iso-transl-language-alist
   '(("Esperanto"
-     ("C"  . [?Æ])
-     ("G"  . [?Ø])
-     ("H"  . [?¦])
-     ("J"  . [?¬])
-     ("S"  . [?Þ])
-     ("U"  . [?Ý])
-     ("c"  . [?æ])
-     ("g"  . [?ø])
-     ("h"  . [?¶])
-     ("j"  . [?¼])
-     ("s"  . [?þ])
-     ("u"  . [?ý]))
+     ("C"  . [?Ĉ])
+     ("G"  . [?Ĝ])
+     ("H"  . [?Ĥ])
+     ("J"  . [?Ĵ])
+     ("S"  . [?Ŝ])
+     ("U"  . [?Ŭ])
+     ("c"  . [?ĉ])
+     ("g"  . [?ĝ])
+     ("h"  . [?ĥ])
+     ("j"  . [?ĵ])
+     ("s"  . [?ŝ])
+     ("u"  . [?ŭ]))
     ("French"
      ("C"  . [?Ç])
      ("c"  . [?ç]))

--- End Message ---
--- Begin Message --- Subject: Re: bug#32371: iso-transl-language-alist for Esperanto: garbled encoding Date: Tue, 07 Aug 2018 18:45:23 +0300
> From: Ivan Shmakov <address@hidden>
> Date: Sun, 05 Aug 2018 21:55:49 +0000
> 
> 
>       Apparently the value of iso-transl-language-alist entry for
>       Esperanto somehow (c38e0c97?) got interpreted as ISO-8859-1
>       instead of the intended ISO-8859-3.
> 
>       For instance, I know of no valid use for Æ or Ø in Esperanto,
>       while reinterpreting the same codes as ISO-8859-3 yields Ĉ and
>       Ĝ, respectively, which are characters used by the language.
> 
> ;; Language-specific translation lists.
> (defvar iso-transl-language-alist
>   '(("Esperanto"
>      ("C"  . [?Æ])
>      ("G"  . [?Ø])
> 
>       Please thus consider the patch MIMEd.

Thanks, pushed to the emacs-26 branch.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]