Fix format

This commit is contained in:
2026-01-31 04:03:06 -08:00
parent 8eb0015593
commit d205dde599

View File

@ -192,9 +192,9 @@ parse-format-string)."
((eq :index part)
(format stream "~A" index))
((and (consp part) (eq :index (car part)))
(case (car part)
(:left (format stream "~VD" max-index-length index))
(:right (format stream "~V@<~D~>" max-index-length index))
(case (cdr part)
(:left (format stream "~V@<~D~>" max-index-length index))
(:right (format stream "~VD" max-index-length index))
(t (format stream "~A" index))))
((stringp part)
(format stream "~A" part))