emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 1f8a6b5 3/3: Fix text property bug in gnus-group-li


From: Eric Abrahamsen
Subject: [Emacs-diffs] master 1f8a6b5 3/3: Fix text property bug in gnus-group-list-active
Date: Mon, 25 Mar 2019 16:52:21 -0400 (EDT)

branch: master
commit 1f8a6b56a5c4342b1fc3ec1d62b9418656a6f953
Author: Eric Abrahamsen <address@hidden>
Commit: Eric Abrahamsen <address@hidden>

    Fix text property bug in gnus-group-list-active
    
    * lisp/gnus/gnus-group.el (gnus-group-list-active): The property value
      should be the group name, not the value of gethash. Ie, it should be
      the key, not the value.
---
 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 f1202e1..8c2411f 100644
--- a/lisp/gnus/gnus-group.el
+++ b/lisp/gnus/gnus-group.el
@@ -4029,7 +4029,7 @@ entail asking the server for the groups."
                 (insert "       *: "
                         (gnus-group-decoded-name group)
                         "\n"))
-       (list 'gnus-group (gethash group gnus-active-hashtb)
+       (list 'gnus-group group
             'gnus-unread t
             'gnus-level (inline (gnus-group-level group)))))
     (goto-char (point-min))))



reply via email to

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