* lisp/emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
This commit is contained in:
parent
b1198e177f
commit
9abdc45d8a
2 changed files with 4 additions and 1 deletions
|
@ -557,7 +557,8 @@ Otherwise, it defers to REST which is a list of branches of the form
|
|||
(let ((newsym (make-symbol "x")))
|
||||
(push (list newsym sym) env)
|
||||
(setq sym newsym)))
|
||||
(if (functionp exp) `(,exp ,sym)
|
||||
(if (functionp exp)
|
||||
`(funcall #',exp ,sym)
|
||||
`(,@exp ,sym)))))
|
||||
(if (null vs)
|
||||
call
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue