diff options
-rwxr-xr-x | dictionary.el | 5 |
1 files 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" |