hfy-merge-adjacent-spans

hfy-merge-adjacent-spans is a compiled Lisp function in `htmlfontify.el'.

(hfy-merge-adjacent-spans FACE-MAP)

Where FACE-MAP is a `hfy-facemap-assoc' for the current buffer,
this function merges adjacent style blocks which are of the same value
and are separated by nothing more interesting than whitespace.

<span class="foo">narf</span> <span class="foo">brain</span>

(as interpreted from FACE-MAP) would become:

<span class="foo">narf brain</span>

Returns a modified copy of FACE-MAP.