diff options
author | John Wiegley <johnw@newartisans.com> | 2018-01-27 14:09:10 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2018-01-27 14:09:10 -0800 |
commit | 566a2ea3a1f0fb1449e9c662924ed1d87e109284 (patch) | |
tree | d82254a23787a05da0315316b5d844ed517c70b2 /lisp/use-package/use-package-core.el | |
parent | c29193bf0724633adf7183dad2d0b6faf7d029ab (diff) | |
download | emacs-566a2ea3a1f0fb1449e9c662924ed1d87e109284.tar.gz emacs-566a2ea3a1f0fb1449e9c662924ed1d87e109284.tar.bz2 emacs-566a2ea3a1f0fb1449e9c662924ed1d87e109284.zip |
Revert "Move variable bindings to the bottom of each file"
This reverts commit c29193bf0724633adf7183dad2d0b6faf7d029ab.
Diffstat (limited to 'lisp/use-package/use-package-core.el')
-rw-r--r-- | lisp/use-package/use-package-core.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index 9ec5d3b1422..9adebdf4bf0 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 @@ -550,7 +550,7 @@ extending any keys already present." (nreverse (sort plist-grouped #'(lambda (l r) (< (use-package-keyword-index (car l)) - (use-package-keyword-index (car r))))))) + (use-package-keyword-index (car r))))))) (setq result (cons (car x) (cons (cdr x) result)))) result))) @@ -754,7 +754,7 @@ no more than once." `((defvar ,loaded nil) (defvar ,result nil) (defvar ,next #'(lambda () (if ,loaded ,result - (setq ,loaded t ,result ,arg)))) + (setq ,loaded t ,result ,arg)))) ,@(funcall f `((funcall ,next)))))) (defsubst use-package-normalize-value (_label arg) @@ -1536,7 +1536,6 @@ this file. Usage: ;; Local Variables: ;; indent-tabs-mode: nil -;; lexical-binding: t ;; End: ;;; use-package-core.el ends here |