diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-09-17 06:24:10 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-09-17 06:24:10 +0000 |
commit | f4530299d51ac820505a6124fe37503a5590824d (patch) | |
tree | ded0762ac7ebdbb571910b238c21a0bfb75fa093 /lisp/gnus/gnus-html.el | |
parent | eca7d7bfba91af55d33dc545f85311b3ecd2459c (diff) | |
download | emacs-f4530299d51ac820505a6124fe37503a5590824d.tar.gz |
gnus-html.el: Replace process-kill-without-query by gnus-set-process-query-on-exit-flag.
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 dec8c5093bd..c390ae0bcf2 100644 --- a/lisp/gnus/gnus-html.el +++ b/lisp/gnus/gnus-html.el @@ -299,7 +299,7 @@ fit these criteria." "--max-time" "60" "-o" (gnus-html-image-id url) (mm-url-decode-entities-string url)))) - (process-kill-without-query process) + (gnus-set-process-query-on-exit-flag process nil) (set-process-sentinel process 'gnus-html-curl-sentinel) (gnus-set-process-plist process (list 'images images 'buffer buffer))))) @@ -463,7 +463,7 @@ This only works if the article in question is HTML." "--location" "--max-time" "60" urls))) - (process-kill-without-query process)))))) + (gnus-set-process-query-on-exit-flag process nil)))))) (provide 'gnus-html) |