1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-20 06:46:50 +02:00

mu-server: use orphan, not empty-parent

So we use only one term.
This commit is contained in:
Dirk-Jan C. Binnema 2021-05-01 08:31:25 +03:00
parent cd9871ddfd
commit 38f7075daa

View File

@ -147,7 +147,7 @@ add_thread_info (Sexp::List& items, const QueryMatch& qmatch)
if (qmatch.has_flag(QueryMatch::Flags::Last)) if (qmatch.has_flag(QueryMatch::Flags::Last))
info.add_prop( ":last-child", symbol_t()); info.add_prop( ":last-child", symbol_t());
if (qmatch.has_flag(QueryMatch::Flags::Orphan)) if (qmatch.has_flag(QueryMatch::Flags::Orphan))
info.add_prop( ":empty-parent", symbol_t()); info.add_prop( ":orphan", symbol_t());
if (qmatch.has_flag(QueryMatch::Flags::Duplicate)) if (qmatch.has_flag(QueryMatch::Flags::Duplicate))
info.add_prop( ":duplicate", symbol_t()); info.add_prop( ":duplicate", symbol_t());
if (qmatch.has_flag(QueryMatch::Flags::HasChild)) if (qmatch.has_flag(QueryMatch::Flags::HasChild))