diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2012-09-13 11:14:30 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2012-09-13 11:14:30 +0000 |
commit | 5e2b4ce123bf042b3b719b1f776cce3e4db7eadf (patch) | |
tree | d965718b979098642c5668844c55afa72ef706a6 /lisp/gnus/gnus-art.el | |
parent | 4fa924951b55e6b428e852b62d6c8ef3464ea1dd (diff) | |
download | emacs-5e2b4ce123bf042b3b719b1f776cce3e4db7eadf.tar.gz |
gnus-art.el (gnus-article-stop-animations): Use gnus-timer--function that is an alias to timer--function
Diffstat (limited to 'lisp/gnus/gnus-art.el')
-rw-r--r-- | lisp/gnus/gnus-art.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index 4dc004f04d4..7dcbd61316f 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el @@ -4554,7 +4554,7 @@ commands: (defun gnus-article-stop-animations () (dolist (timer (and (boundp 'timer-list) timer-list)) - (when (eq (timer--function timer) 'image-animate-timeout) + (when (eq (gnus-timer--function timer) 'image-animate-timeout) (cancel-timer timer)))) (defun gnus-stop-downloads () |