org-uniquify-alist

org-uniquify-alist is a compiled Lisp function in `org.el'.

(org-uniquify-alist ALIST)

Merge elements of ALIST with the same key.

For example, in this alist:

(org-uniquify-alist '((a 1) (b 2) (a 3)))
=> '((a 1 3) (b 2))

merge (a 1) and (a 3) into (a 1 3).

The function returns the new ALIST.