This should fix the bug in ebrowse mentioned in FOR-RELEASE.  Can
someone confirm that it works?

*** emacs/lib-src/ebrowse.c.~1.39.~     2005-08-07 06:44:16.000000000 -0400
--- emacs/lib-src/ebrowse.c     2005-09-18 14:46:54.000000000 -0400
***************
*** 648,654 ****
    h %= TABLE_SIZE;
  
    for (sym = class_table[h]; sym; sym = sym->next)
!     if (streq (name, sym->name) && sym->namesp == scope)
        break;
  
    if (sym == NULL)
--- 648,654 ----
    h %= TABLE_SIZE;
  
    for (sym = class_table[h]; sym; sym = sym->next)
!     if (streq (name, sym->name) && streq (sym->namesp->name, scope->name))
        break;
  
    if (sym == NULL)


_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel

Reply via email to