From ec5205dc5c644a366cfbb2c881a8984630098fb3 Mon Sep 17 00:00:00 2001 From: Lars Magne Ingebrigtsen Date: Wed, 29 Sep 2010 23:45:35 +0200 Subject: [PATCH] (gnus-valid-move-group-p): Make sure that `group' is a symbol. --- lisp/ChangeLog | 3 +++ lisp/gnus-sum.el | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d013c2aa5..28a598def 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-09-29 Lars Magne Ingebrigtsen + * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a + symbol. + * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls code, since if the user has requested network, that's what they ought to get. diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el index 59b9682aa..4cd716803 100644 --- a/lisp/gnus-sum.el +++ b/lisp/gnus-sum.el @@ -11900,7 +11900,8 @@ save those articles instead." (nreverse split-name))) (defun gnus-valid-move-group-p (group) - (and (boundp group) + (and (symbolp group) + (boundp group) (symbol-name group) (symbol-value group) (gnus-get-function (gnus-find-method-for-group -- 2.25.1