emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 12cbe2e 1/3: Make `jump to group' work even if it i


From: Katsumi Yamaoka
Subject: [Emacs-diffs] master 12cbe2e 1/3: Make `jump to group' work even if it is not activated (bug#33653)
Date: Tue, 9 Apr 2019 00:28:25 -0400 (EDT)

branch: master
commit 12cbe2e9fb440379ae13559c786fbeba91873157
Author: Katsumi Yamaoka <address@hidden>
Commit: Katsumi Yamaoka <address@hidden>

    Make `jump to group' work even if it is not activated (bug#33653)
    
    * lisp/gnus/gnus-group.el (gnus-group-goto-group):
    Use gnus-newsrc-hashtb instead of gnus-active-hashtb to check if
    a group exists even if its server is not activated (bug#33653).
---
 lisp/gnus/gnus-group.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el
index 0be3854..58f3dc3 100644
--- a/lisp/gnus/gnus-group.el
+++ b/lisp/gnus/gnus-group.el
@@ -2560,7 +2560,7 @@ If FAR, it is likely that the group is not on the current 
line.
 If TEST-MARKED, the line must be marked."
   (when group
     (let ((start (point))
-         (active (and (gethash group gnus-active-hashtb)
+         (active (and (gethash group gnus-newsrc-hashtb)
                       group)))
       (beginning-of-line)
       (cond



reply via email to

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