Trevor Arjeski writes: > "J.P." writes: > >> You could start by "bisecting" the non-ERC parts of your config or the >> non-ERC modes listed in the gathered facts from your initial report >> (default stuff commented out): > > After a bisect, I was able to find the culprit: > > (erc-fill-function 'erc-fill-static) > > Toggling this to and from the default - 'erc-fill-variable - allows me > to reproduce the issue consistently. Thanks for getting to the bottom of this. I was indeed able to reproduce it with user options alone. > > My guess is that the track parser does not like the extra padding > between the timestamp and nick, but I haven't yet looked into the code. Yes, that's essentially what's happening. The new internal function that extracts all faces in a message acted too aggressively in abandoning its search after encountering a region without any face properties. So while this issue is most visible when using `nicks' highlighting, it's actually always present and therefore somewhat pernicious. The attached patch should fix the problem.