mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-30 09:00:31 -08:00
* lisp/emacs-lisp/macroexp.el (macroexp-if): Fix typo
This commit is contained in:
parent
d93bca0197
commit
30914167fd
1 changed files with 1 additions and 1 deletions
|
|
@ -377,7 +377,7 @@ Never returns an empty list."
|
|||
(t
|
||||
`(cond (,test ,@(macroexp-unprogn then))
|
||||
(,(nth 1 else) ,@(macroexp-unprogn (nth 2 else)))
|
||||
,@(let ((def (nthcdr 3 else))) (if def '((t ,@def))))))))
|
||||
,@(let ((def (nthcdr 3 else))) (if def `((t ,@def))))))))
|
||||
((eq (car-safe else) 'cond)
|
||||
`(cond (,test ,@(macroexp-unprogn then)) ,@(cdr else)))
|
||||
;; Invert the test if that lets us reduce the depth of the tree.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue