bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#6613: 23.2; bogus let bound var in gnus-delay.el


From: Leo
Subject: bug#6613: 23.2; bogus let bound var in gnus-delay.el
Date: Sun, 11 Jul 2010 22:07:04 +0100

In the function `gnus-delay-article' in gnus-delay.el,

  (let ((group (format "nndraft:%s" gnus-delay-group)))
      (gnus-agent-queue-setup gnus-delay-group))

The let-bound var `group' is not used and in fact gnus-agent-queue-setup
takes care of formatting the group name already. So I think it should be
simplified to

  (gnus-agent-queue-setup gnus-delay-group)

Leo





reply via email to

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