Mercurial > emacs
changeset 110083:9921d33b9ce3
gnus-html-curl-sentinel: Replace process-get with gnus-process-get.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Wed, 01 Sep 2010 04:28:56 +0000 |
parents | 0bc890984083 |
children | 320a820be8d8 |
files | lisp/gnus/ChangeLog lisp/gnus/gnus-html.el |
diffstat | 2 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/gnus/ChangeLog Wed Sep 01 04:22:17 2010 +0000 +++ b/lisp/gnus/ChangeLog Wed Sep 01 04:28:56 2010 +0000 @@ -3,6 +3,9 @@ * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility functions. + * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with + gnus-process-get. + 2010-08-31 Julien Danjou <julien@danjou.info> (tiny change) * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
--- a/lisp/gnus/gnus-html.el Wed Sep 01 04:22:17 2010 +0000 +++ b/lisp/gnus/gnus-html.el Wed Sep 01 04:28:56 2010 +0000 @@ -171,8 +171,8 @@ (defun gnus-html-curl-sentinel (process event) (when (string-match "finished" event) - (let* ((images (process-get process 'images)) - (buffer (process-get process 'buffer)) + (let* ((images (gnus-process-get process 'images)) + (buffer (gnus-process-get process 'buffer)) (spec (pop images)) (file (gnus-html-image-id (car spec)))) (when (and (buffer-live-p buffer)