emacs-devel
[Top][All Lists]
Advanced

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

Fix for ebrowse bug?


From: Chong Yidong
Subject: Fix for ebrowse bug?
Date: Sun, 18 Sep 2005 14:53:52 -0400

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)




reply via email to

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