Fix nnimap lexical conversion problem
* lisp/gnus/nnimap.el (nnimap-process-expiry-targets): Fix problem introduced when converting to lexical binding -- `set' alters the dynamic value (bug#48577).
This commit is contained in:
parent
24c9657746
commit
327accb38f
1 changed files with 3 additions and 1 deletions
|
@ -1076,7 +1076,9 @@ during splitting, which may be slow."
|
|||
"UID COPY %s %S")
|
||||
(nnimap-article-ranges (gnus-compress-sequence articles))
|
||||
(nnimap-group-to-imap (gnus-group-real-name nnmail-expiry-target)))
|
||||
(set (if can-move 'deleted-articles 'articles-to-delete) articles))))
|
||||
(if can-move
|
||||
(setq deleted-articles articles)
|
||||
(setq articles-to-delete articles)))))
|
||||
t)
|
||||
(t
|
||||
(dolist (article articles)
|
||||
|
|
Loading…
Add table
Reference in a new issue