emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Jason Rumney
Subject: [Emacs-diffs] Changes to emacs/src/xmenu.c
Date: Sun, 06 Jan 2002 19:23:56 -0500

Index: emacs/src/xmenu.c
diff -c emacs/src/xmenu.c:1.229 emacs/src/xmenu.c:1.230
*** emacs/src/xmenu.c:1.229     Sun Jan  6 18:30:12 2002
--- emacs/src/xmenu.c   Sun Jan  6 19:23:56 2002
***************
*** 1645,1650 ****
--- 1645,1651 ----
    wv->value = 0;
    wv->enabled = 1;
    wv->button_type = BUTTON_TYPE_NONE;
+   wv->help = Qnil;
    first_wv = wv;
  
    if (deep_p)
***************
*** 1779,1784 ****
--- 1780,1786 ----
          wv->value = 0;
          wv->enabled = 1;
          wv->button_type = BUTTON_TYPE_NONE;
+         wv->help = Qnil;
          /* This prevents lwlib from assuming this
             menu item is really supposed to be empty.  */
          /* The EMACS_INT cast avoids a warning.
***************
*** 2002,2007 ****
--- 2004,2010 ----
    wv->value = 0;
    wv->enabled = 1;
    wv->button_type = BUTTON_TYPE_NONE;
+   wv->help =Qnil;
    first_wv = wv;
    first_pane = 1;
   
***************
*** 2070,2075 ****
--- 2073,2079 ----
              wv->value = 0;
              wv->enabled = 1;
              wv->button_type = BUTTON_TYPE_NONE;
+             wv->help = Qnil;
              save_wv = wv;
              prev_wv = 0;
            }
***************
*** 2154,2162 ****
--- 2158,2168 ----
  
        wv_sep2->name = "--";
        wv_sep2->next = first_wv->contents;
+       wv_sep2->help = Qnil;
  
        wv_sep1->name = "--";
        wv_sep1->next = wv_sep2;
+       wv_sep1->help = Qnil;
  
  #ifndef HAVE_MULTILINGUAL_MENU
        if (STRING_MULTIBYTE (title))
***************
*** 2167,2172 ****
--- 2173,2179 ----
        wv_title->enabled = TRUE;
        wv_title->button_type = BUTTON_TYPE_NONE;
        wv_title->next = wv_sep1;
+       wv_title->help = Qnil;
        first_wv->contents = wv_title;
      }
  
***************
*** 2370,2375 ****
--- 2377,2383 ----
        prev_wv->name++;
      prev_wv->enabled = 1;
      prev_wv->name = "message";
+     prev_wv->help = Qnil;
      first_wv = prev_wv;
   
      /* Loop over all panes and items, filling in the tree.  */
***************
*** 2413,2418 ****
--- 2421,2427 ----
        wv->value = (char *) XSTRING (item_name)->data;
        wv->call_data = (void *) &XVECTOR (menu_items)->contents[i];
        wv->enabled = !NILP (enable);
+       wv->help = Qnil;
        prev_wv = wv;
  
        if (! boundary_seen)
***************
*** 2429,2435 ****
  
      wv = xmalloc_widget_value ();
      wv->name = dialog_name;
! 
      /* Dialog boxes use a really stupid name encoding
         which specifies how many buttons to use
         and how many buttons are on the right.
--- 2438,2444 ----
  
      wv = xmalloc_widget_value ();
      wv->name = dialog_name;
!     wv->help = Qnil;
      /* Dialog boxes use a really stupid name encoding
         which specifies how many buttons to use
         and how many buttons are on the right.



reply via email to

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