From 1167e7d063a146be0bc7bef2ca3bc1ae61b45277 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 29 Nov 2017 16:53:41 -0800 Subject: [PATCH] Fix a missing `and' --- lisp/use-package/use-package.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index c651316ce3c..2b8daae009d 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -830,8 +830,8 @@ If the package is installed, its entry is removed from If ALLOW-EMPTY is non-nil, it's OK for ARGS to be an empty list." (declare (indent 1)) (if (if args - (listp args) (listp (cdr args)) - allow-empty) + (and (listp args) (listp (cdr args))) + allow-empty) (if (= (length args) 1) (funcall f label (car args)) (funcall f label args)) -- 2.39.2