mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 06:20:43 -08:00
Fix a missing `and'
This commit is contained in:
parent
6a62122e9c
commit
1167e7d063
1 changed files with 2 additions and 2 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue