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) ((eq :index part)
(format stream "~A" index)) (format stream "~A" index))
((and (consp part) (eq :index (car part))) ((and (consp part) (eq :index (car part)))
(case (car part) (case (cdr part)
(:left (format stream "~VD" max-index-length index)) (:left (format stream "~V@<~D~>" max-index-length index))
(:right (format stream "~V@<~D~>" max-index-length index)) (:right (format stream "~VD" max-index-length index))
(t (format stream "~A" index)))) (t (format stream "~A" index))))
((stringp part) ((stringp part)
(format stream "~A" part)) (format stream "~A" part))