projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a09306d
)
Fix text property bug in gnus-group-list-active
author
Eric Abrahamsen
<eric@ericabrahamsen.net>
Mon, 25 Mar 2019 20:27:07 +0000
(13:27 -0700)
committer
Eric Abrahamsen
<eric@ericabrahamsen.net>
Mon, 25 Mar 2019 20:30:05 +0000
(13:30 -0700)
* 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
patch
|
blob
|
history
diff --git
a/lisp/gnus/gnus-group.el
b/lisp/gnus/gnus-group.el
index f1202e176e7157cd03ba04f503739780219b0b53..8c2411f4d9268685c928530e1dc1b3b94cf243dc 100644
(file)
--- 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))))