diff options
| author | John Paul Wallington | 2004-10-20 08:04:19 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2004-10-20 08:04:19 +0000 |
| commit | ed87225ada2d73979dfc4c3e376b70224db3fe15 (patch) | |
| tree | 86ff87b1b958b9dfa9a62fc4440e01183c3b0215 | |
| parent | 1dc5ba01509cfec9d1fbf0c161a5c88aa275aa77 (diff) | |
| download | emacs-ed87225ada2d73979dfc4c3e376b70224db3fe15.tar.gz emacs-ed87225ada2d73979dfc4c3e376b70224db3fe15.zip | |
(url-gateway-nslookup-host): Use `set-process-query-on-exit-flag'.
| -rw-r--r-- | lisp/url/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/url/url-gw.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index dc84b2f8dd6..053984fcaeb 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-10-20 John Paul Wallington <jpw@gnu.org> | ||
| 2 | |||
| 3 | * url-gw.el (url-gateway-nslookup-host): | ||
| 4 | Use `set-process-query-on-exit-flag'. | ||
| 5 | |||
| 1 | 2004-10-10 Lars Hansen <larsh@math.ku.dk> | 6 | 2004-10-10 Lars Hansen <larsh@math.ku.dk> |
| 2 | 7 | ||
| 3 | * url-auth.el: Update header and footer. | 8 | * url-auth.el: Update header and footer. |
diff --git a/lisp/url/url-gw.el b/lisp/url/url-gw.el index 38220d3cc21..b5701668f83 100644 --- a/lisp/url/url-gw.el +++ b/lisp/url/url-gw.el | |||
| @@ -117,7 +117,7 @@ linked Emacs under SunOS 4.x" | |||
| 117 | (let ((proc (start-process " *nslookup*" " *nslookup*" | 117 | (let ((proc (start-process " *nslookup*" " *nslookup*" |
| 118 | url-gateway-nslookup-program host)) | 118 | url-gateway-nslookup-program host)) |
| 119 | (res host)) | 119 | (res host)) |
| 120 | (process-kill-without-query proc) | 120 | (set-process-query-on-exit-flag proc nil) |
| 121 | (save-excursion | 121 | (save-excursion |
| 122 | (set-buffer (process-buffer proc)) | 122 | (set-buffer (process-buffer proc)) |
| 123 | (while (memq (process-status proc) '(run open)) | 123 | (while (memq (process-status proc) '(run open)) |