aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-11-04 18:49:41 +0100
committerGravatar Tom Willemse2016-11-04 18:49:41 +0100
commitf4198bda0d46a64676654e2a910172b9918226dc (patch)
tree7a15d295fa5b48b8fdfea288cf99feda17fd8f07 /emacs
parent8e849034520c575a957fd3567304547a54c4734e (diff)
downloadnew-dotfiles-f4198bda0d46a64676654e2a910172b9918226dc.tar.gz
new-dotfiles-f4198bda0d46a64676654e2a910172b9918226dc.zip
Fix byte-compiler warning
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/vendor-lisp/circe-serenity/circe-serenity.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/vendor-lisp/circe-serenity/circe-serenity.el b/emacs/.emacs.d/vendor-lisp/circe-serenity/circe-serenity.el
index de5bf82..d7c3dc9 100644
--- a/emacs/.emacs.d/vendor-lisp/circe-serenity/circe-serenity.el
+++ b/emacs/.emacs.d/vendor-lisp/circe-serenity/circe-serenity.el
@@ -197,7 +197,7 @@ key. A key :intro is added to the plist and then passed on to
"Disable Serenity for Circe."
(interactive)
(dolist (format-pair circe-serenity--formatters-alist)
- (cl-destructuring-bind (format . _) format-pair
+ (let ((format (car format-pair)))
(set format (get format 'circe-serenity-original))
(put format 'circe-serenity-original nil))))