From: Mark Wooding Date: Mon, 25 Oct 2010 10:05:36 +0000 (+0100) Subject: dot/emacs, el/Makefile: Random fixes from vampire. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/a1bf764e752244494ca373a396b43f5c028ac139?ds=inline dot/emacs, el/Makefile: Random fixes from vampire. I can't, alas, remember what the motivation for these was. --- diff --git a/dot/emacs b/dot/emacs index cb7c393..6d873dd 100644 --- a/dot/emacs +++ b/dot/emacs @@ -23,6 +23,7 @@ (setq load-path (nconc load-path (list "~/lib/emacs"))) (require 'dot-emacs) +(require 'cl) ;;;-------------------------------------------------------------------------- ;;; Some random initialisation. diff --git a/el/Makefile b/el/Makefile index 987378a..6549fde 100644 --- a/el/Makefile +++ b/el/Makefile @@ -6,4 +6,4 @@ all: dot-emacs.elc .SUFFIXES: .el .elc .el.elc: - $(EMACS) --batch --no-site-file --eval '(byte-compile-file "$<")' + $(EMACS) -L . --batch --no-site-file --eval '(byte-compile-file "$<")'