Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
cdecbedb
Commit
cdecbedb
authored
Jan 31, 2016
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix return value of imap-starttls-open
* lisp/net/imap.el (imap-starttls-open): Fix return value.
parent
20c7e34a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
lisp/net/imap.el
lisp/net/imap.el
+3
-2
No files found.
lisp/net/imap.el
View file @
cdecbedb
...
...
@@ -752,8 +752,9 @@ sure of changing the value of `foo'."
(
lambda
(
capabilities
)
(
when
(
string-match-p
"STARTTLS"
capabilities
)
"1 STARTTLS\r\n"
))))
(
done
(
and
process
(
memq
(
process-status
process
)
'
(
open
run
)))))
(
done
(
if
(
and
process
(
memq
(
process-status
process
)
'
(
open
run
)))
process
)))
(
message
"imap: Connecting with STARTTLS...%s"
(
if
done
"done"
"failed"
))
done
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment