emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 ef9025f: Save the server alias on reconnect (Bug#


From: Noam Postavsky
Subject: [Emacs-diffs] emacs-26 ef9025f: Save the server alias on reconnect (Bug#29657)
Date: Tue, 10 Jul 2018 23:14:09 -0400 (EDT)

branch: emacs-26
commit ef9025f5bcfb996fbabf5869584e9143bbc81af4
Author: Miciah Masters <address@hidden>
Commit: Noam Postavsky <address@hidden>

    Save the server alias on reconnect (Bug#29657)
    
    rcirc does not retain the server alias on reconnect.  As a result, rcirc
    fails to re-use server and channel buffers when an alias is used.  Further
    problems may ensue when aliases are used to differentiate multiple
    connections to the same host, for example when using a single IRC bouncer
    or proxy to connect to multiple IRC networks.
    
    Save the server alias when connecting to a server so that reconnect will
    retain the alias.
    * lisp/net/rcirc.el (rcirc-connect): Include server-alias when setting
    rcirc-connection-info.
    
    Copyright-paperwork-exempt: yes
---
 lisp/net/rcirc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el
index 5acbec7..c09bff7 100644
--- a/lisp/net/rcirc.el
+++ b/lisp/net/rcirc.el
@@ -585,7 +585,7 @@ If ARG is non-nil, instead prompt for connection 
parameters."
 
       (setq-local rcirc-connection-info
                  (list server port nick user-name full-name startup-channels
-                       password encryption))
+                       password encryption server-alias))
       (setq-local rcirc-process process)
       (setq-local rcirc-server server)
       (setq-local rcirc-server-name



reply via email to

[Prev in Thread] Current Thread [Next in Thread]