From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konstantin Kliakhandler Subject: BUG: swapped utf-8 symbols in org-entities Date: Tue, 28 Jun 2016 11:15:15 +0300 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=089e0122f6f8c33a620536523d10 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50466) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHoBI-0003HY-1O for emacs-orgmode@gnu.org; Tue, 28 Jun 2016 04:15:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bHoBF-0000Oe-Nn for emacs-orgmode@gnu.org; Tue, 28 Jun 2016 04:15:38 -0400 Received: from mail-wm0-x236.google.com ([2a00:1450:400c:c09::236]:37432) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHoBF-0000OG-8i for emacs-orgmode@gnu.org; Tue, 28 Jun 2016 04:15:37 -0400 Received: by mail-wm0-x236.google.com with SMTP id a66so15437786wme.0 for ; Tue, 28 Jun 2016 01:15:35 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org --089e0122f6f8c33a620536523d10 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hello, The unicode letters for 'varphi' and for 'phi' are swapped. Here is a patch correcting this: diff --git a/lisp/org-entities.el b/lisp/org-entities.el index 4044432..6f6d054 100644 --- a/lisp/org-entities.el +++ b/lisp/org-entities.el @@ -204,9 +204,8 @@ packages to be loaded, add these packages to `org-latex-packages-alist'." ("upsih" "\\Upsilon" t "ϒ" "upsilon" "upsilon" "=CF=92") ("upsilon" "\\upsilon" t "υ" "upsilon" "upsilon" "=CF=85") ("Phi" "\\Phi" t "Φ" "Phi" "Phi" "=CE=A6") - ("phi" "\\phi" t "φ" "phi" "phi" "=CF=86") - ("varphi" "\\varphi" t "ϕ" "varphi" "varphi" "=C9=B8") + ("phi" "\\phi" t "φ" "phi" "phi" "=C9=B8") + ("varphi" "\\varphi" t "ϕ" "varphi" "varphi" "=CF=86") ("Chi" "X" nil "Χ" "Chi" "Chi" "=CE=A7") ("chi" "\\chi" t "χ" "chi" "chi" "=CF=87") ("acutex" "\\acute x" t "´x" "'x" "'x" "=F0=9D=91=A5=CC=81") Thanks, Kosta --089e0122f6f8c33a620536523d10 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Hell= o,

The unicode letters for 'varphi' and for 'phi' ar= e swapped.

Here is a patch correcting this:

diff --git a/lis= p/org-entities.el b/lisp/org-entities.el
in= dex 4044432..6f6d054 100644
--- a/lisp/org-= entities.el
+++ b/lisp/org-entities.el
@@ -204,9 +204,8 @@ packages to be loaded, add = these packages to `org-latex-packages-alist'."
=C2=A0 =C2=A0 =C2=A0("upsih" "\\Upsilon" t= "ϒ" "upsilon" "upsilon" "=CF= =92")
=C2=A0 =C2=A0 =C2=A0("upsil= on" "\\upsilon" t "υ" "upsilon&qu= ot; "upsilon" "=CF=85")
=C2=A0 =C2=A0 =C2=A0("Phi" "\\Phi" t "Φ&q= uot; "Phi" "Phi" "=CE=A6")
- =C2=A0 =C2=A0("phi" "\\phi" t "&am= p;phi;" "phi" "phi" "=CF=86")
- =C2=A0 =C2=A0("varphi" "\\varphi&quo= t; t "ϕ" "varphi" "varphi" "= =C9=B8")
+ =C2=A0 =C2=A0("phi&quo= t; "\\phi" t "φ" "phi" "phi"= ; "=C9=B8")
+ =C2=A0 =C2=A0("= ;varphi" "\\varphi" t "ϕ" "varphi&= quot; "varphi" "=CF=86")
=C2=A0 =C2=A0 =C2=A0("Chi" "X" nil "Χ&qu= ot; "Chi" "Chi" "=CE=A7")
=C2=A0 =C2=A0 =C2=A0("chi" "\\chi" t "= ;χ" "chi" "chi" "=CF=87")
<= div class=3D"gmail_quote">=C2=A0 =C2=A0 =C2=A0("acutex" "\\a= cute x" t "&acute;x" "'x" "'x&quo= t; "=F0=9D=91=A5=CC=81")

Thanks,
Kosta
--089e0122f6f8c33a620536523d10--