[gnus git] branch master updated: n0-15-11-g881890b =1= Use `imap-process-connection-type' for 'shell' streams as well as Kerberos, SSL, and other subprocesses.
Ted Zlatanov <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 881890b1a32566ae07b939072b430cbefc95d033 (commit)
from 895b2a4bf61fe21934f7e6391689c000e39ced7d (commit)
- Log -----------------------------------------------------------------
commit 881890b1a32566ae07b939072b430cbefc95d033
Author: Brian T. Sniffen <[email protected]>
Date: Mon Mar 28 13:12:34 2011 -0500
Use `imap-process-connection-type' for 'shell' streams as well as Kerberos, SSL, and other subprocesses.
* imap.el (imap-shell-open, imap-process-connection-type): Use
imap-process-connection-type for 'shell' streams as well as
Kerberos, SSL, other subprocesses.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b63c256..116a3d0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2011-03-28 Brian T. Sniffen <[email protected]> (tiny change)
+
+ * imap.el (imap-shell-open, imap-process-connection-type): Use
+ imap-process-connection-type for 'shell' streams as well as
+ Kerberos, SSL, other subprocesses.
+
2011-03-26 Chong Yidong <[email protected]>
* proto-stream.el: Changes preparatory to merging open-protocol-stream
diff --git a/lisp/imap.el b/lisp/imap.el
index 6d80b97..f4af03f 100644
--- a/lisp/imap.el
+++ b/lisp/imap.el
@@ -211,7 +211,7 @@ until a successful connection is made."
:type '(repeat string))
(defcustom imap-process-connection-type nil
- "*Value for `process-connection-type' to use for Kerberos4, GSSAPI and SSL.
+ "*Value for `process-connection-type' to use for Kerberos4, GSSAPI, shell, and SSL.
The `process-connection-type' variable controls the type of device
used to communicate with subprocesses. Values are nil to use a
pipe, or t or `pty' to use a pty. The value has no effect if the
@@ -770,6 +770,7 @@ sure of changing the value of `foo'."
(let* ((port (or port imap-default-port))
(coding-system-for-read imap-coding-system-for-read)
(coding-system-for-write imap-coding-system-for-write)
+ (process-connection-type imap-process-connection-type)
(process (start-process
name buffer shell-file-name shell-command-switch
(format-spec
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 6 ++++++
lisp/imap.el | 3 ++-
2 files changed, 8 insertions(+), 1 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project