From: John Wiegley Date: Thu, 30 Nov 2017 00:53:41 +0000 (-0800) Subject: Fix a missing `and' X-Git-Tag: emacs-29.0.90~1306^2~15^2~227 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1167e7d063a146be0bc7bef2ca3bc1ae61b45277;p=emacs.git Fix a missing `and' --- 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))