[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107493: net/tls.el (open-tls-stream)
From: |
Katsumi Yamaoka |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107493: net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag. |
Date: |
Sun, 04 Mar 2012 00:15:34 +0000 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107493
author: Lars Magne Ingebrigtsen <address@hidden>
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Sun 2012-03-04 00:15:34 +0000
message:
net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
modified:
lisp/ChangeLog
lisp/net/tls.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-03-03 14:43:03 +0000
+++ b/lisp/ChangeLog 2012-03-04 00:15:34 +0000
@@ -5,6 +5,10 @@
when doing the prompting for `sendmail-query-once' before sending
in Message buffers (bug#10897).
+ * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
+ This is inconsistent with all the other stream functions, which leave
+ the setting up to the higher levels (if so wanted) (bug#10931).
+
2012-03-02 Alan Mackenzie <address@hidden>
Depessimize the handling of very large macros.
=== modified file 'lisp/net/tls.el'
--- a/lisp/net/tls.el 2012-01-19 07:21:25 +0000
+++ b/lisp/net/tls.el 2012-03-04 00:15:34 +0000
@@ -237,10 +237,6 @@
(setq process (start-process
name buffer shell-file-name shell-command-switch
formatted-cmd))
- (funcall (if (fboundp 'set-process-query-on-exit-flag)
- 'set-process-query-on-exit-flag
- 'process-kill-without-query)
- process nil)
(while (and process
(memq (process-status process) '(open run))
(progn
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107493: net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.,
Katsumi Yamaoka <=