mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-31 23:00:54 -08:00
Fixed error in FORMATTER of ~[~]
This commit is contained in:
parent
8e83146946
commit
30c485b1ec
1 changed files with 2 additions and 3 deletions
|
|
@ -2130,12 +2130,11 @@
|
|||
(setf args prev-args)
|
||||
,@(expand-directive-list sublist)))))
|
||||
(if *only-simple-args*
|
||||
(multiple-value-bind
|
||||
(guts new-args)
|
||||
(multiple-value-bind (guts new-args)
|
||||
(let ((*simple-args* *simple-args*))
|
||||
(values (expand-directive-list sublist)
|
||||
*simple-args*))
|
||||
(cond ((eq *simple-args* (cdr new-args))
|
||||
(cond ((and new-args (eq *simple-args* (cdr new-args)))
|
||||
(setf *simple-args* new-args)
|
||||
`(when ,(caar new-args)
|
||||
,@guts))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue