diff options
Diffstat (limited to 'lisp/net/network-stream.el')
| -rw-r--r-- | lisp/net/network-stream.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/net/network-stream.el b/lisp/net/network-stream.el index e7b3150b792..0104fa7dd12 100644 --- a/lisp/net/network-stream.el +++ b/lisp/net/network-stream.el | |||
| @@ -374,10 +374,12 @@ asynchronously, if possible." | |||
| 374 | (when (re-search-forward eoc nil t) | 374 | (when (re-search-forward eoc nil t) |
| 375 | (goto-char (match-beginning 0)) | 375 | (goto-char (match-beginning 0)) |
| 376 | (delete-region (point-min) (line-beginning-position)))) | 376 | (delete-region (point-min) (line-beginning-position)))) |
| 377 | (let* ((capability-command (plist-get parameters :capability-command))) | 377 | (let ((capability-command (plist-get parameters :capability-command)) |
| 378 | (eo-capa (or (plist-get parameters :end-of-capability) | ||
| 379 | eoc))) | ||
| 378 | (list stream | 380 | (list stream |
| 379 | (network-stream-get-response stream start eoc) | 381 | (network-stream-get-response stream start eoc) |
| 380 | (network-stream-command stream capability-command eoc) | 382 | (network-stream-command stream capability-command eo-capa) |
| 381 | 'tls)))))) | 383 | 'tls)))))) |
| 382 | 384 | ||
| 383 | (defun network-stream-open-shell (name buffer host service parameters) | 385 | (defun network-stream-open-shell (name buffer host service parameters) |