<link linkend="duplicate-threads">
$duplicate_threads</link>)</entry>
</row>
+ <row>
+ <entry>~#</entry>
+ <entry>broken threads (see
+ <link linkend="strict-threads">
+ $strict_threads</link>)</entry>
+ </row>
<row>
<entry>~$</entry>
<entry>unreferenced messages (requires threaded view)</entry>
{ 'z', MUTT_SIZE, 0, eat_range },
{ '=', MUTT_DUPLICATED, 0, NULL },
{ '$', MUTT_UNREFERENCED, 0, NULL },
+ { '#', MUTT_BROKEN, 0, NULL },
{ 0, 0, 0, NULL },
};
}
case MUTT_UNREFERENCED:
return (pat->not ^ (h->thread && !h->thread->child));
+ case MUTT_BROKEN:
+ return (pat->not ^ (h->thread && h->thread->fake_thread));
#ifdef USE_NNTP
case MUTT_NEWSGROUPS:
return (pat->not ^ (h->env->newsgroups && patmatch(pat, h->env->newsgroups) == 0));