spacemacs/layers/+chat/erc/funcs.el
Andrew Stevanus c87832b6a9 Fix connecting to default servers with TLS more than once with ERC
The erc//servers function removes the :ssl variable from the list so it
can be passed directly to erc-tls, but this means that subsequent
connections will not use TLS. Thus, we should operate on a copy of the
list instead.
2016-10-17 13:28:07 +02:00

28 lines
706 B
EmacsLisp

;;; funcs.el --- Spacemacs ERC Layer functions File
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defun erc//servers (server-list)
(dolist (s server-list)
(setq s (copy-list s))
(apply (if
(plist-get (cdr s) :ssl)
(progn
(remf (cdr s) :ssl)
'erc-tls)
'erc)
:server s)))
(defun erc/default-servers ()
(interactive)
(if erc-server-list
(erc//servers erc-server-list)
(message "You must define erc-server-list")))