emacs-diffs
[Top][All Lists]
Advanced

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

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


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

Index: emacs/src/w32menu.c
diff -c emacs/src/w32menu.c:1.52 emacs/src/w32menu.c:1.53
*** emacs/src/w32menu.c:1.52    Sun Jan  6 16:37:18 2002
--- emacs/src/w32menu.c Sun Jan  6 19:24:45 2002
***************
*** 1143,1148 ****
--- 1143,1149 ----
    wv->value = 0;
    wv->enabled = 1;
    wv->button_type = BUTTON_TYPE_NONE;
+   wv->help = Qnil;
    first_wv = wv;
    save_wv = 0;
    prev_wv = 0;
***************
*** 1215,1220 ****
--- 1216,1222 ----
              wv->value = 0;
              wv->enabled = 1;
              wv->button_type = BUTTON_TYPE_NONE;
+             wv->help = Qnil;
            }
          save_wv = wv;
          prev_wv = 0;
***************
*** 1327,1332 ****
--- 1329,1335 ----
    wv->value = 0;
    wv->enabled = 1;
    wv->button_type = BUTTON_TYPE_NONE;
+   wv->help = Qnil;
    first_wv = wv;
  
    if (deep_p)
***************
*** 1463,1468 ****
--- 1466,1472 ----
          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.
***************
*** 1604,1609 ****
--- 1608,1614 ----
    wv->value = 0;
    wv->enabled = 1;
    wv->button_type = BUTTON_TYPE_NONE;
+   wv->Qnil;
    first_wv = wv;
    first_pane = 1;
   
***************
*** 1670,1675 ****
--- 1675,1681 ----
              wv->value = 0;
              wv->enabled = 1;
              wv->button_type = BUTTON_TYPE_NONE;
+             wv->help = Qnil;
              save_wv = wv;
              prev_wv = 0;
            }
***************
*** 1752,1757 ****
--- 1758,1764 ----
         so that it looks better.  Having two separators looks odd.  */
        wv_sep->name = "--";
        wv_sep->next = first_wv->contents;
+       wv_sep->help = Qnil;
  
  #ifndef HAVE_MULTILINGUAL_MENU
        if (STRING_MULTIBYTE (title))
***************
*** 1761,1766 ****
--- 1768,1774 ----
        wv_title->enabled = TRUE;
        wv_title->title = TRUE;
        wv_title->button_type = BUTTON_TYPE_NONE;
+       wv_title->help = Qnil;
        wv_title->next = wv_sep;
        first_wv->contents = wv_title;
      }
***************
*** 1896,1901 ****
--- 1904,1910 ----
        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.  */
***************
*** 1941,1946 ****
--- 1950,1956 ----
        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)
***************
*** 1957,1962 ****
--- 1967,1973 ----
  
      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



reply via email to

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