emacs-devel
[Top][All Lists]
Advanced

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

Re: message-mode toolbars, was: Re: "Why is emacs so square?"


From: Lars Ingebrigtsen
Subject: Re: message-mode toolbars, was: Re: "Why is emacs so square?"
Date: Fri, 01 May 2020 00:16:34 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Dmitry Gutov <address@hidden> writes:

> In the meantime, could you look into the problem of the "legacy"
> toolbar being used on full-color devices? The variable
> gmm-tool-bar-style, breakage in commit
> d88118db37dd543536677d7c4212a2c67621fb88. I can create a bug report,
> if you like.

Oh, it's this bit?

 (defcustom gmm-tool-bar-style
   (if (and (boundp 'tool-bar-mode)
           tool-bar-mode
-          (and (fboundp 'display-visual-class)
-               (not (memq (display-visual-class)
-                          (list 'static-gray 'gray-scale
-                                'static-color 'pseudo-color)))))
+          (memq (display-visual-class)
+                (list 'static-gray 'gray-scale
+                      'static-color 'pseudo-color)))
       'gnome
     'retro)

Oops.  Looks like I removed the `not' by mistake while I was cleaning up
the foundp test somehow?

That's clearly a regression and should be fixed on the emacs-27 branch,
I think.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no



reply via email to

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