mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-05 03:39:38 +00:00
Use backquote rather than quote
This commit is contained in:
parent
0887e1f9d0
commit
6a62122e9c
1 changed files with 2 additions and 2 deletions
|
@ -1026,7 +1026,7 @@ If RECURSED is non-nil, recurse into sublists."
|
|||
(function (lambda () ...))"
|
||||
(pcase v
|
||||
((pred use-package--non-nil-symbolp) t)
|
||||
(`(,(or 'quote 'function)
|
||||
(`(,(or `quote `function)
|
||||
,(pred use-package--non-nil-symbolp)) t)
|
||||
((pred functionp) t)
|
||||
(`(function (lambda . ,_)) t)
|
||||
|
@ -1039,7 +1039,7 @@ If RECURSED is non-nil, recurse into sublists."
|
|||
#'(lambda () ...)"
|
||||
(pcase v
|
||||
((pred use-package--non-nil-symbolp) v)
|
||||
(`(,(or 'quote 'function)
|
||||
(`(,(or `quote `function)
|
||||
,(and sym (pred use-package--non-nil-symbolp))) sym)
|
||||
(`(lambda . ,_) v)
|
||||
(`(quote ,(and lam `(lambda . ,_))) lam)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue