From d4353999beca25111a05173f9b57018fcb883d33 Mon Sep 17 00:00:00 2001 From: Torsten Hilbrich Date: Wed, 3 Jul 2013 05:06:50 +0200 Subject: dictionary: Avoid deprecation warning for process-kill-without-query --- dictionary.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dictionary.el b/dictionary.el index a5885c3..889d30d 100755 --- a/dictionary.el +++ b/dictionary.el @@ -426,8 +426,9 @@ by the choice value: (connection-open dictionary-proxy-server dictionary-proxy-port) (connection-open dictionary-server dictionary-port))) - (process-kill-without-query - (connection-process dictionary-connection)) + (set-process-query-on-exit-flag + (connection-process dictionary-connection) + nil) (when dictionary-use-http-proxy (message "Proxy CONNECT to %s:%d" -- cgit v1.2.3