Fix prettification of \phi, \varphi, and \varsigma

* 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.
This commit is contained in:
Tassilo Horn 2016-08-30 19:51:33 +02:00
parent 2b404e8391
commit 6730432053

View file

@ -2991,7 +2991,7 @@ There might be text before point."
("\\sigma" . ?σ)
("\\tau" . )
("\\upsilon" . ?υ)
("\\phi" . ?φ)
("\\phi" . ?ϕ)
("\\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" . ?⊢)