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 | |
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')
-rw-r--r-- | lisp/use-package/use-package-bind-key.el | 2 | ||||
-rw-r--r-- | lisp/use-package/use-package-chords.el | 2 | ||||
-rw-r--r-- | lisp/use-package/use-package-core.el | 3 | ||||
-rw-r--r-- | lisp/use-package/use-package-delight.el | 2 | ||||
-rw-r--r-- | lisp/use-package/use-package-diminish.el | 2 | ||||
-rw-r--r-- | lisp/use-package/use-package-ensure.el | 2 | ||||
-rw-r--r-- | lisp/use-package/use-package-jump.el | 2 | ||||
-rw-r--r-- | lisp/use-package/use-package-lint.el | 2 | ||||
-rw-r--r-- | lisp/use-package/use-package.el | 2 |
9 files changed, 9 insertions, 10 deletions
diff --git a/lisp/use-package/use-package-bind-key.el b/lisp/use-package/use-package-bind-key.el index d8fe56dfaa5..638aec45d7b 100644 --- a/lisp/use-package/use-package-bind-key.el +++ b/lisp/use-package/use-package-bind-key.el @@ -1,4 +1,4 @@ -;;; use-package-bind-key.el --- Support for the :bind/:bind-keymap keywords +;;; use-package-bind-key.el --- Support for the :bind/:bind-keymap keywords -*- lexical-binding: t; -*- ;; Copyright (C) 2012-2017 John Wiegley diff --git a/lisp/use-package/use-package-chords.el b/lisp/use-package/use-package-chords.el index 63a9737109f..936ff228999 100644 --- a/lisp/use-package/use-package-chords.el +++ b/lisp/use-package/use-package-chords.el @@ -1,4 +1,4 @@ -;;; use-package-chords.el --- key-chord keyword for use-package +;;; use-package-chords.el --- key-chord keyword for use-package -*- lexical-binding: t; -*- ;; Copyright (C) 2015-2017 Justin Talbott 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 diff --git a/lisp/use-package/use-package-delight.el b/lisp/use-package/use-package-delight.el index 9d4f6acf2de..4207993f811 100644 --- a/lisp/use-package/use-package-delight.el +++ b/lisp/use-package/use-package-delight.el @@ -1,4 +1,4 @@ -;;; use-package-delight.el --- Support for the :delight keyword +;;; use-package-delight.el --- Support for the :delight keyword -*- lexical-binding: t; -*- ;; Copyright (C) 2012-2017 John Wiegley diff --git a/lisp/use-package/use-package-diminish.el b/lisp/use-package/use-package-diminish.el index c2da62257e6..4ff2b3505f6 100644 --- a/lisp/use-package/use-package-diminish.el +++ b/lisp/use-package/use-package-diminish.el @@ -1,4 +1,4 @@ -;;; use-package-diminish.el --- Support for the :diminish keyword +;;; use-package-diminish.el --- Support for the :diminish keyword -*- lexical-binding: t; -*- ;; Copyright (C) 2012-2017 John Wiegley diff --git a/lisp/use-package/use-package-ensure.el b/lisp/use-package/use-package-ensure.el index 1a76b883e1c..257e542d0af 100644 --- a/lisp/use-package/use-package-ensure.el +++ b/lisp/use-package/use-package-ensure.el @@ -1,4 +1,4 @@ -;;; use-package-ensure.el --- Support for the :ensure and :pin keywords +;;; use-package-ensure.el --- Support for the :ensure and :pin keywords -*- lexical-binding: t; -*- ;; Copyright (C) 2012-2017 John Wiegley diff --git a/lisp/use-package/use-package-jump.el b/lisp/use-package/use-package-jump.el index 31d1b054060..4044ad16564 100644 --- a/lisp/use-package/use-package-jump.el +++ b/lisp/use-package/use-package-jump.el @@ -1,4 +1,4 @@ -;;; use-package-jump.el --- Attempt to jump to a use-package declaration +;;; use-package-jump.el --- Attempt to jump to a use-package declaration -*- lexical-binding: t; -*- ;; Copyright (C) 2012-2017 John Wiegley diff --git a/lisp/use-package/use-package-lint.el b/lisp/use-package/use-package-lint.el index 53c682842f9..c6e7c3c0ce2 100644 --- a/lisp/use-package/use-package-lint.el +++ b/lisp/use-package/use-package-lint.el @@ -1,4 +1,4 @@ -;;; use-package-lint.el --- Attempt to find errors in use-package declarations +;;; use-package-lint.el --- Attempt to find errors in use-package declarations -*- lexical-binding: t; -*- ;; Copyright (C) 2012-2017 John Wiegley diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 5f98db1bed7..1a8fff895f6 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -1,4 +1,4 @@ -;;; use-package.el --- A configuration macro for simplifying your .emacs +;;; use-package.el --- A configuration macro for simplifying your .emacs -*- lexical-binding: t; -*- ;; Copyright (C) 2012-2017 John Wiegley |