Load core-lib before core-package

So that core-package may use the Doom standard library.
This commit is contained in:
Henrik Lissner 2018-05-20 20:08:03 +02:00
parent 8ce5e96ea5
commit ac5eaf0fb3
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 4 additions and 5 deletions

View file

@ -1,9 +1,8 @@
;;; core-lib.el -*- lexical-binding: t; -*-
(let ((load-path doom-site-load-path))
(require 'subr-x)
(require 'cl-lib)
(require 'map))
(require 'subr-x)
(require 'cl-lib)
(require 'map)
(eval-and-compile
(unless EMACS26+