diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-09-01 00:18:24 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-09-01 00:18:24 +0000 |
commit | 0a46a12f7a484e3fab96ea2f46fa738e90dabf1c (patch) | |
tree | 3a0d3d41dcc4801841e1719c06ed4a814bf41867 /lisp/gnus/gnus-html.el | |
parent | c7e663544a3c525f3edf8b456647344e63a8ffe0 (diff) | |
download | emacs-0a46a12f7a484e3fab96ea2f46fa738e90dabf1c.tar.gz emacs-0a46a12f7a484e3fab96ea2f46fa738e90dabf1c.tar.bz2 emacs-0a46a12f7a484e3fab96ea2f46fa738e90dabf1c.zip |
Fix previous merge from Gnus trunk.
Diffstat (limited to 'lisp/gnus/gnus-html.el')
-rw-r--r-- | lisp/gnus/gnus-html.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-html.el b/lisp/gnus/gnus-html.el index f568d673345..576d8835dcc 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 (gnus-process-get process 'images)) - (buffer (gnus-process-get process 'buffer)) + (let* ((images (process-get process 'images)) + (buffer (process-get process 'buffer)) (spec (pop images)) (file (gnus-html-image-id (car spec)))) (when (and (buffer-live-p buffer) |