The previous patch I sent was bugged.  Here is a corrected version.
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 15:10:27.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,657 ----
    h %= TABLE_SIZE;
  
    for (sym = class_table[h]; sym; sym = sym->next)
!     if (streq (name, sym->name)
!       && ((!sym->namesp && !scope)
!           || (sym->namesp && scope
!               && 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