Fix group-to-alist

To not just append elements to the alist.
This commit is contained in:
Christopher Baines 2019-12-15 15:51:46 +00:00
parent a41249d8fe
commit bdcba528fc

View file

@ -89,7 +89,7 @@
(match (assoc key result) (match (assoc key result)
((_ . existing-values) ((_ . existing-values)
`((,key . ,(cons value existing-values)) `((,key . ,(cons value existing-values))
,@result)) ,@(alist-delete key result)))
(#f (#f
`((,key . (,value)) `((,key . (,value))
,@result)))))) ,@result))))))