mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Make ERC respect spaces in server passwords
* lisp/erc/erc.el (erc-login): Also known as connection passwords, these are sent as the sole arg to the PASS command, which is nowadays often overloaded with other semantics imposed by various entities to convey things like bouncer or services creds.
This commit is contained in:
parent
ecafe1cbb5
commit
4e312c07f7
1 changed files with 1 additions and 1 deletions
|
|
@ -6185,7 +6185,7 @@ user input."
|
|||
erc-session-server
|
||||
erc-session-user-full-name))
|
||||
(if erc-session-password
|
||||
(erc-server-send (format "PASS %s" erc-session-password))
|
||||
(erc-server-send (concat "PASS :" erc-session-password))
|
||||
(message "Logging in without password"))
|
||||
(erc-server-send (format "NICK %s" (erc-current-nick)))
|
||||
(erc-server-send
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue