emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#71467: closed (Value of `LaTeX-math-menu-unicode' on macOS)


From: GNU bug Tracking System
Subject: bug#71467: closed (Value of `LaTeX-math-menu-unicode' on macOS)
Date: Wed, 12 Jun 2024 06:43:01 +0000

Your message dated Wed, 12 Jun 2024 08:42:12 +0200
with message-id <m2h6dy64sb.fsf@macmutant.fritz.box>
and subject line Re: bug#71467: Value of `LaTeX-math-menu-unicode' on macOS
has caused the debbugs.gnu.org bug report #71467,
regarding Value of `LaTeX-math-menu-unicode' on macOS
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
71467: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=71467
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: Value of `LaTeX-math-menu-unicode' on macOS Date: Mon, 10 Jun 2024 10:34:28 +0200 User-agent: Gnus/5.13 (Gnus v5.13)
Hi all,

I was looking at this request[1] and it occurred to me that the value of
`LaTeX-math-menu-unicode' doesn't cater for macOS.  So the math-menu
currently looks like this:

PNG image

where it can look liket this:

PNG image

So I'd like to install the following change:

--8<---------------cut here---------------start------------->8---
diff --git a/latex.el b/latex.el
index da202219..cfd7ee5c 100644
--- a/latex.el
+++ b/latex.el
@@ -6426,8 +6426,7 @@ Each entry should be a list with upto four elements, KEY, 
VALUE,
 MENU and CHARACTER, see `LaTeX-math-list' for details.")

 (defcustom LaTeX-math-menu-unicode
-  (or (string-match "\\<GTK\\>" (emacs-version))
-      (eq window-system 'w32))
+  (if (memq window-system '(pgtk ns w32)) t nil)
   "Whether the LaTeX menu should try using Unicode for effect."
   :type 'boolean
   :group 'LaTeX-math)
--8<---------------cut here---------------end--------------->8---

Any comments?

Best, Arash

Footnotes:
[1]  https://lists.gnu.org/archive/html/auctex/2024-06/msg00000.html

--- End Message ---
--- Begin Message --- Subject: Re: bug#71467: Value of `LaTeX-math-menu-unicode' on macOS Date: Wed, 12 Jun 2024 08:42:12 +0200 User-agent: Gnus/5.13 (Gnus v5.13)
Ikumi Keita <ikumi@ikumi.que.jp> writes:

> Looks good 😘

Thanks, installed, and closing.

Best, Arash


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]