@cindex sequences, union of
@cindex union of sequences
This function returns a list of the elements that appear either in
-@var{sequence1} or @var{sequence2}. If the optional argument
-@var{function} is non-@code{nil}, it is a function of two arguments to
-use to compare elements instead of the default @code{equal}.
+@var{sequence1} or @var{sequence2}. The elements of the returned list
+are all unique, in the sense that no two elements there will compare
+equal. If the optional argument @var{function} is non-@code{nil}, it
+should be a function of two arguments to use to compare elements,
+instead of the default @code{equal}.
@example
@group
+++
** New function 'seq-union'.
This function takes two sequences and returns a list of all elements
-that appear in either of them.
+that appear in either of them, with no two elements that compare equal
+appearing in the result.
+++
** New function 'syntax-class-to-char'.