branch: elpa/julia-mode
commit 747176f42ce1d55e8c0ee16a0d9c55cbd939cd5b
Author: Jeff Bezanson <jeff.bezan...@gmail.com>
Commit: Yichao Yu <yyc1...@gmail.com>

    fix latex symbol \bot
---
 julia-mode.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/julia-mode.el b/julia-mode.el
index d67b028..f32637b 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -1107,6 +1107,7 @@ Do not move back beyond MIN."
 (puthash "\\vdash" "⊢" julia-latexsubs)
 (puthash "\\dashv" "⊣" julia-latexsubs)
 (puthash "\\top" "⊤" julia-latexsubs)
+(puthash "\\bot" "⊥" julia-latexsubs)
 (puthash "\\models" "⊧" julia-latexsubs)
 (puthash "\\vDash" "⊨" julia-latexsubs)
 (puthash "\\Vdash" "⊩" julia-latexsubs)

Reply via email to