1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-30 19:53:09 +00:00

Fix indexing of Gnus entry in gnus-group-unsubscribe-group

* lisp/gnus/gnus-group.el (gnus-group-unsubscribe-group): Hopefully
  that's the last of these.
This commit is contained in:
Eric Abrahamsen 2019-07-17 20:34:48 -07:00
parent d590b27ee4
commit b10464c6f9

View File

@ -3814,7 +3814,7 @@ group line."
(newsrc
;; Toggle subscription flag.
(gnus-group-change-level
newsrc (if level level (if (<= (gnus-info-level (nth 2 newsrc))
newsrc (if level level (if (<= (gnus-info-level (nth 1 newsrc))
gnus-level-subscribed)
(1+ gnus-level-subscribed)
gnus-level-default-subscribed)))