summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-emacs/erc-sasl/files/erc-sasl-20190215-cl.patch')
-rw-r--r--app-emacs/erc-sasl/files/erc-sasl-20190215-cl.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/app-emacs/erc-sasl/files/erc-sasl-20190215-cl.patch b/app-emacs/erc-sasl/files/erc-sasl-20190215-cl.patch
new file mode 100644
index 0000000..1ba9bb8
--- /dev/null
+++ b/app-emacs/erc-sasl/files/erc-sasl-20190215-cl.patch
@@ -0,0 +1,34 @@
+Some updates from https://github.com/syl20bnr/spacemacs
+
+commit 2a983671af6652964b04382760ca530475debfc5
+Author: Yen-Chin Lee <coldnew.tw@gmail.com>
+Date: Mon Oct 5 15:22:35 2015 +0800
+
+ Fix some cl-lib function with prefix
+
+commit da8063437052943f749bc0f14c5ef5a7536aeaac
+Author: kimr <kimr@synopsys.com>
+Date: Sat Dec 14 09:14:56 2019 -0800
+
+ converted cl to cl-lib
+
+--- a/erc-sasl.el
++++ b/erc-sasl.el
+@@ -37,7 +37,7 @@
+
+ ;;; Code:
+
+-(eval-when-compile (require 'cl))
++(eval-when-compile (require 'cl-lib))
+
+ (defvar erc-sasl-use-sasl t
+ "Set to nil to disable SASL auth")
+@@ -51,7 +51,7 @@
+ current session"
+ (and erc-sasl-use-sasl
+ (boundp 'erc-session-server)
+- (loop for re in erc-sasl-server-regexp-list
++ (cl-loop for re in erc-sasl-server-regexp-list
+ thereis (integerp (string-match re erc-session-server)))))
+
+ (define-erc-response-handler (CAP)