From cd110b2b0c2d2823d3572a62e1cd596c096f9a47 Mon Sep 17 00:00:00 2001 From: Katsumi Yamaoka Date: Wed, 1 Sep 2010 04:28:56 +0000 Subject: [PATCH] gnus-html-curl-sentinel: Replace process-get with gnus-process-get. --- lisp/gnus/ChangeLog | 3 +++ lisp/gnus/gnus-html.el | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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) -- 2.39.2