monnier pushed a commit to branch externals/auctex
in repository elpa.

commit d4b6196dee7c53592dd63aed7151896d76dad7ce
Author: Tassilo Horn <[email protected]>
Date:   Wed Jul 24 08:41:29 2013 +0200

    Enable LaTeX-math-menu-unicode on w32 systems.
    
    * latex.el (LaTeX-math-menu-unicode): Enable also on windows
    systems as it seems to work there, too.
---
 ChangeLog |    5 +++++
 latex.el  |    3 ++-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 7d0af48..4e101cf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-07-24  Tassilo Horn  <[email protected]>
+
+       * latex.el (LaTeX-math-menu-unicode): Enable also on windows
+       systems as it seems to work there, too.
+
 2013-07-23  Mos� Giordano  <[email protected]>
 
        * tex.el (TeX-clean-default-intermediate-suffixes): Add `.fls',
diff --git a/latex.el b/latex.el
index 95854a0..92978f6 100644
--- a/latex.el
+++ b/latex.el
@@ -4663,7 +4663,8 @@ The menu entries will be generated dynamically, but you 
can specify
 the sequence by initializing this variable.")
 
 (defcustom LaTeX-math-menu-unicode
-  (and (string-match "\\<GTK\\>" (emacs-version)) t)
+  (or (string-match "\\<GTK\\>" (emacs-version))
+      (eq window-system 'w32))
   "Whether the LaTeX menu should try using Unicode for effect."
   :type 'boolean
   :group 'LaTeX-math)

Reply via email to