Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7e821d0d
Commit
7e821d0d
authored
Jun 05, 2011
by
Deniz Dogan
Browse files
* lisp/net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced in last change.
parent
a059fe24
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/net/rcirc.el
lisp/net/rcirc.el
+2
-2
No files found.
lisp/ChangeLog
View file @
7e821d0d
2011-06-05 Deniz Dogan <deniz@dogan.se>
* net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
in last change.
2011-06-05 Deniz Dogan <deniz@dogan.se>
* net/rcirc.el (rcirc-prompt-for-encryption): New function.
...
...
lisp/net/rcirc.el
View file @
7e821d0d
...
...
@@ -594,10 +594,10 @@ SERVER-PLIST is the property list for the server."
(
let
((
msg
"Encryption (default %s): "
)
(
choices
'
(
"plain"
"tls"
))
(
default
(
or
(
plist-get
server-plist
:encryption
)
"
plain
"
)))
'
plain
)))
(
intern
(
completing-read
(
format
msg
default
)
choices
nil
t
""
nil
default
))))
choices
nil
t
nil
nil
(
symbol-name
default
))))
)
(
defun
rcirc-keepalive
()
"Send keep alive pings to active rcirc processes.
...
...
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