]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix prettification of \phi, \varphi, and \varsigma
authorTassilo Horn <tsdh@gnu.org>
Tue, 30 Aug 2016 17:51:33 +0000 (19:51 +0200)
committerTassilo Horn <tsdh@gnu.org>
Tue, 30 Aug 2016 17:51:33 +0000 (19:51 +0200)
* lisp/textmodes/tex-mode.el (tex--prettify-symbols-alist): Fix
  prettification of \phi, \varphi, and \varsigma.

Concretely, \phi's symbol was actually varphi, \varphi was missing, and
\varsigma was commented out with a FIXME that it was reversed with
\sigma which it was not.

lisp/textmodes/tex-mode.el

index 4430fd6496975958ac904a57495a39f5b827eae4..456282890f96b15ecc0bf07256aaddcff368cb15 100644 (file)
@@ -2991,7 +2991,7 @@ There might be text before point."
     ("\\sigma" . ?σ)
     ("\\tau" . ?τ)
     ("\\upsilon" . ?υ)
-    ("\\phi" . ?Ï\86)
+    ("\\phi" . ?Ï\95)
     ("\\chi" . ?χ)
     ("\\psi" . ?ψ)
     ("\\omega" . ?ω)
@@ -3380,10 +3380,11 @@ There might be text before point."
     ("\\u{i}" . ?ĭ)
     ("\\vDash" . ?⊨)
     ("\\varepsilon" . ?ε)
+    ("\\varphi" . ?φ)
     ("\\varprime" . ?′)
     ("\\varpropto" . ?∝)
     ("\\varrho" . ?ϱ)
-    ;; ("\\varsigma" ?ς)              ;FIXME: Looks reversed with the non\var.
+    ("\\varsigma" ?ς)
     ("\\vartriangleleft" . ?⊲)
     ("\\vartriangleright" . ?⊳)
     ("\\vdash" . ?⊢)