1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-16 09:50:25 +00:00

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.
This commit is contained in:
Eric Abrahamsen 2019-03-25 13:27:07 -07:00
parent a09306d53b
commit 1f8a6b56a5

View File

@ -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))))