From 82aaaaf4a1b5cfd78fd57994f0e52d1e2f8ffdd0 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 5 Apr 2016 12:19:59 -0700 Subject: [PATCH] Fix package.el urls --- dotfiles/emacs.d/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index b9ef880a..2c04b7b3 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -224,7 +224,8 @@ "Builds funcalls of FUNCS applied to the arg." (if (equal (length funcs) 0) (quote args) - `(apply ,(car funcs) (imalison:make-list (imalison:compose-helper ,(cdr funcs)))))) + `(apply ,(car funcs) + (imalison:make-list (imalison:compose-helper ,(cdr funcs)))))) (defun random-choice (choices) (nth (random (length choices)) choices))