Load cl-lib sooner (address #67)

This commit is contained in:
Henrik Lissner 2017-05-19 10:43:55 +02:00
parent 5add3c3805
commit 8422cbd172
2 changed files with 1 additions and 2 deletions

View file

@ -1,7 +1,5 @@
;;; core-lib.el
(require 'cl-lib)
;; I don't use use-package for these to save on the `fboundp' lookups it does
;; for its :commands property. I use dolists instead of mapc to avoid extra
;; stackframes allocated for lambdas. This is _definitely_ premature