diff options
author | Alex Branham <alex.branham@gmail.com> | 2018-01-27 09:56:15 -0600 |
---|---|---|
committer | Alex Branham <alex.branham@gmail.com> | 2018-01-27 10:01:10 -0600 |
commit | 88bcb8b96d6366ad2c801d6edb3ecc0d18618643 (patch) | |
tree | a60627216da4112df2024cf916702249155ffacc /lisp/use-package/use-package-core.el | |
parent | fd8a3510fd1a555b925f57b2870917e3c4ea0206 (diff) | |
download | emacs-88bcb8b96d6366ad2c801d6edb3ecc0d18618643.tar.gz emacs-88bcb8b96d6366ad2c801d6edb3ecc0d18618643.tar.bz2 emacs-88bcb8b96d6366ad2c801d6edb3ecc0d18618643.zip |
Use lexical bindings and remove cl package
Diffstat (limited to 'lisp/use-package/use-package-core.el')
-rw-r--r-- | lisp/use-package/use-package-core.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index 469b3f7b23c..198246eb3ee 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el @@ -1,4 +1,4 @@ -;;; use-package-core.el --- A configuration macro for simplifying your .emacs +;;; use-package-core.el --- A configuration macro for simplifying your .emacs -*- lexical-binding: t; -*- ;; Copyright (C) 2012-2017 John Wiegley @@ -43,7 +43,6 @@ (require 'cl-lib) (eval-when-compile - (require 'cl) (require 'regexp-opt)) (defgroup use-package nil |