From 46503b194c2a1025e3e88f6e8cbd5750ccd5d855 Mon Sep 17 00:00:00 2001 From: Justin Burkett Date: Tue, 6 Feb 2018 12:48:51 -0500 Subject: [PATCH] Fix usage of plist argument in use-package-normalize-plist Previously the argument was never used. --- lisp/use-package/use-package-core.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index 1ae35fe7335..a649d087fae 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el @@ -511,7 +511,8 @@ This is in contrast to merely setting it to 0." "Given a pseudo-plist, normalize it to a regular plist. The normalized key/value pairs from input are added to PLIST, extending any keys already present." - (when input + (if (null input) + plist (let* ((keyword (car input)) (xs (use-package-split-list #'keywordp (cdr input))) (args (car xs)) -- 2.39.2