emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r114685: Fix bug #15629 with GUI menus on NS.


From: Eli Zaretskii
Subject: [Emacs-diffs] trunk r114685: Fix bug #15629 with GUI menus on NS.
Date: Wed, 16 Oct 2013 15:08:13 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114685
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/15629
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Wed 2013-10-16 18:07:36 +0300
message:
  Fix bug #15629 with GUI menus on NS.
  
   src/menu.c (have_boxes): Fix redundant simulation of radio buttons
   in NS GUI sessions.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/menu.c                     menu.c-20091113204419-o5vbwnq5f7feedwu-8676
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-10-16 09:30:30 +0000
+++ b/src/ChangeLog     2013-10-16 15:07:36 +0000
@@ -1,3 +1,8 @@
+2013-10-16  Eli Zaretskii  <address@hidden>
+
+       * menu.c (have_boxes): Fix redundant simulation of radio buttons
+       in NS GUI sessions.  (Bug#15629)
+
 2013-10-16  Dmitry Antipov  <address@hidden>
 
        * fns.c (Fstring_as_unibyte): Use xlispstrdup.

=== modified file 'src/menu.c'
--- a/src/menu.c        2013-10-10 10:06:17 +0000
+++ b/src/menu.c        2013-10-16 15:07:36 +0000
@@ -55,7 +55,7 @@
 static bool
 have_boxes (void)
 {
-#if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NTGUI)
+#if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NTGUI) || 
defined(HAVE_NS)
   if (FRAME_WINDOW_P (XFRAME (Vmenu_updating_frame)))
     return 1;
 #endif


reply via email to

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