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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/xmenu.c [lexbind]
Date: Wed, 15 Sep 2004 20:33:11 -0400

Index: emacs/src/xmenu.c
diff -c emacs/src/xmenu.c:1.230.4.6 emacs/src/xmenu.c:1.230.4.7
*** emacs/src/xmenu.c:1.230.4.6 Sat Sep  4 09:28:16 2004
--- emacs/src/xmenu.c   Thu Sep 16 00:12:26 2004
***************
*** 1,5 ****
  /* X Communication module for terminals which understand the X protocol.
!    Copyright (C) 1986, 88, 93, 94, 96, 99, 2000, 2001, 2003
     Free Software Foundation, Inc.
  
  This file is part of GNU Emacs.
--- 1,5 ----
  /* X Communication module for terminals which understand the X protocol.
!    Copyright (C) 1986, 1988, 1993, 1994, 1996, 1999, 2000, 2001, 2003, 2004
     Free Software Foundation, Inc.
  
  This file is part of GNU Emacs.
***************
*** 1801,1807 ****
  
    for (wv = first_wv; wv; wv = wv->next)
      {
!       if (wv->lname && ! NILP (wv->lname))
          {
            wv->name = SDATA (wv->lname);
  
--- 1801,1807 ----
  
    for (wv = first_wv; wv; wv = wv->next)
      {
!       if (STRINGP (wv->lname))
          {
            wv->name = SDATA (wv->lname);
  
***************
*** 1815,1821 ****
              }
          }
  
!       if (wv->lkey && ! NILP (wv->lkey))
          wv->key = SDATA (wv->lkey);
  
        if (wv->contents)
--- 1815,1821 ----
              }
          }
  
!       if (STRINGP (wv->lkey))
          wv->key = SDATA (wv->lkey);
  
        if (wv->contents)
***************
*** 1888,1894 ****
  #endif
    Lisp_Object items;
    widget_value *wv, *first_wv, *prev_wv = 0;
!   int i, last_i;
    int *submenu_start, *submenu_end;
    int *submenu_top_level_items, *submenu_n_panes;
  
--- 1888,1894 ----
  #endif
    Lisp_Object items;
    widget_value *wv, *first_wv, *prev_wv = 0;
!   int i, last_i = 0;
    int *submenu_start, *submenu_end;
    int *submenu_top_level_items, *submenu_n_panes;
  




reply via email to

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