[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.
This commit is contained in:
parent
a68786dd2d
commit
2c6d035968
3 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2015-02-05 Vincent Bernat <bernat@luffy.cx> (tiny change)
|
||||
|
||||
* nnimap.el (nnimap-request-group-scan): Fix the function name.
|
||||
|
||||
* gnus-int.el (gnus-request-group-scan): Use the correct function name.
|
||||
|
||||
2015-02-05 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* gnus-sum.el (gnus-select-newsgroup): Pass the group info along so
|
||||
|
|
|
|||
|
|
@ -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))))
|
||||
|
|
|
|||
|
|
@ -820,7 +820,7 @@ textual parts.")
|
|||
group))
|
||||
t))))
|
||||
|
||||
(deffoo nnimap-request-scan-group (group &optional server info)
|
||||
(deffoo nnimap-request-group-scan (group &optional server info)
|
||||
(setq group (nnimap-decode-gnus-group group))
|
||||
(let (marks high low)
|
||||
(with-current-buffer (nnimap-buffer)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue