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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
80aec780
Commit
80aec780
authored
May 29, 2011
by
Deniz Dogan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* net/rcirc.el (rcirc): Use the user's stored encryption method by default.
parent
0196f88a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/net/rcirc.el
lisp/net/rcirc.el
+6
-1
No files found.
lisp/ChangeLog
View file @
80aec780
2011-05-29 Deniz Dogan <deniz@dogan.se>
* net/rcirc.el (rcirc): Use the user's stored encryption method by
default.
2011-05-29 Chong Yidong <cyd@stupidchicken.com>
* select.el: Don't perform clipboard-manager saving in hooks;
...
...
lisp/net/rcirc.el
View file @
80aec780
...
...
@@ -456,7 +456,12 @@ If ARG is non-nil, instead prompt for connection parameters."
(
encryption
(
intern
(
completing-read
"Encryption (default plain): "
'
(
"plain"
"tls"
)
nil
t
nil
nil
"plain"
))))
nil
t
(
let
((
choice
(
plist-get
server-plist
:encryption
)))
(
when
choice
(
symbol-name
choice
)))
nil
"plain"
))))
(
rcirc-connect
server
port
nick
user-name
rcirc-default-full-name
channels
password
encryption
))
...
...
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