From e613fc7d1f1bbb8c3c9954646d8c85a26b241603 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Wed, 11 May 2016 20:23:42 +0100 Subject: [PATCH] dot/emacs: Load `cl' before `dot-emacs.el'. Organization: Straylight/Edgeware From: Mark Wooding We appear to have gained a dependency, but it doesn't matter. --- dot/emacs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot/emacs b/dot/emacs index 2f347d6..2db3e63 100644 --- a/dot/emacs +++ b/dot/emacs @@ -33,8 +33,8 @@ (if (file-exists-p boot) (load boot)))) -(require 'dot-emacs) (require 'cl) +(require 'dot-emacs) ;;;-------------------------------------------------------------------------- ;;; Some random initialisation. -- [mdw]