From: Katsumi Yamaoka Date: Wed, 1 Sep 2010 04:28:56 +0000 (+0000) Subject: gnus-html-curl-sentinel: Replace process-get with gnus-process-get. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~48^2~166 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cd110b2b0c2d2823d3572a62e1cd596c096f9a47;p=emacs.git gnus-html-curl-sentinel: Replace process-get with gnus-process-get. --- diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index d7bc81bcac8..8a1e5db1359 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -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 (tiny change) * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method diff --git a/lisp/gnus/gnus-html.el b/lisp/gnus/gnus-html.el index 576d8835dcc..f568d673345 100644 --- a/lisp/gnus/gnus-html.el +++ b/lisp/gnus/gnus-html.el @@ -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)