summaryrefslogtreecommitdiff
path: root/lisp/gnus/gnus-int.el
diff options
context:
space:
mode:
authorVincent Bernat <bernat@luffy.cx>2015-02-05 03:59:47 +0000
committerKatsumi Yamaoka <yamaoka@jpl.org>2015-02-05 03:59:47 +0000
commit2c6d035968e865d70512086c310f0584b1d6eadc (patch)
tree802f2731ee765f47627c6e3f82a8c98d80ea797c /lisp/gnus/gnus-int.el
parenta68786dd2d9e1ca82f3afe29d61953a1eb36b75c (diff)
downloademacs-2c6d035968e865d70512086c310f0584b1d6eadc.tar.gz
[Gnus] Make `M-g' in the group buffer work again
* gnus-int.el (gnus-request-group-scan): Use the correct function name. * nnimap.el (nnimap-request-group-scan): Fix the function name.
Diffstat (limited to 'lisp/gnus/gnus-int.el')
-rw-r--r--lisp/gnus/gnus-int.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-int.el b/lisp/gnus/gnus-int.el
index dd938ce0758..4e870bb84bb 100644
--- a/lisp/gnus/gnus-int.el
+++ b/lisp/gnus/gnus-int.el
@@ -442,7 +442,7 @@ If it is down, start it up (again)."
(defun gnus-request-group-scan (group info)
"Request that GROUP get a complete rescan."
(let ((gnus-command-method (gnus-find-method-for-group group))
- (func 'request-group-description))
+ (func 'request-group-scan))
(when (gnus-check-backend-function func group)
(funcall (gnus-get-function gnus-command-method func)
(gnus-group-real-name group) (nth 1 gnus-command-method) info))))