1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

gnus-int.el, gnus-util.el: Gnus hooks for the mark get/set operations.

gnus-sync.el: Update docs to explain state and plans.
auth-source.el: Update docs with TODO items.
This commit is contained in:
Teodor Zlatanov 2010-10-07 03:49:38 +00:00 committed by Katsumi Yamaoka
parent 58d1ac6d6d
commit cbabe91fdc
5 changed files with 257 additions and 212 deletions

View file

@ -1290,6 +1290,11 @@ ARG is passed to the first function."
(save-current-buffer
(apply 'run-hooks funcs)))
(defun gnus-run-hook-with-args (hook &rest args)
"Does the same as `run-hook-with-args', but saves the current buffer."
(save-current-buffer
(apply 'run-hook-with-args hook args)))
(defun gnus-run-mode-hooks (&rest funcs)
"Run `run-mode-hooks' if it is available, otherwise `run-hooks'.
This function saves the current buffer."