emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/w32term.c


From: Jason Rumney
Subject: [Emacs-diffs] Changes to emacs/src/w32term.c
Date: Wed, 28 Nov 2001 15:36:12 -0500

Index: emacs/src/w32term.c
diff -u emacs/src/w32term.c:1.127 emacs/src/w32term.c:1.128
--- emacs/src/w32term.c:1.127   Sat Nov 24 12:31:06 2001
+++ emacs/src/w32term.c Wed Nov 28 15:36:12 2001
@@ -176,8 +176,6 @@
 
 extern void free_frame_menubar ();
 
-extern void w32_menu_display_help (HMENU menu, UINT menu_item, UINT flags);
-
 extern int w32_codepage_for_font (char *fontname);
 
 extern glyph_metric *w32_BDF_TextMetric(bdffont *fontp,
@@ -8728,16 +8726,6 @@
             }
          break;
 
-        case WM_MENUSELECT:
-          {
-            HMENU menu = (HMENU) msg.msg.lParam;
-            UINT menu_item = (UINT) LOWORD (msg.msg.wParam);
-            UINT flags = (UINT) HIWORD (msg.msg.wParam);
-
-            w32_menu_display_help (menu, menu_item, flags);
-          }
-          break;
-
        case WM_DROPFILES:
          f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
 
@@ -9079,7 +9067,7 @@
          FRAME_PTR f = XFRAME (frame);
          /* The tooltip has been drawn already.  Avoid the
             SET_FRAME_GARBAGED below.  */
-         if (f == XFRAME (tip_frame))
+         if (EQ (frame, tip_frame))
            continue;
 
          /* Check "visible" frames and mark each as obscured or not.



reply via email to

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