From 38f7075daae7c1f68ac99943d90530e9f83d98bd Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sat, 1 May 2021 08:31:25 +0300 Subject: [PATCH] mu-server: use orphan, not empty-parent So we use only one term. --- lib/mu-server.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mu-server.cc b/lib/mu-server.cc index 203b3b6f..f92b124a 100644 --- a/lib/mu-server.cc +++ b/lib/mu-server.cc @@ -147,7 +147,7 @@ add_thread_info (Sexp::List& items, const QueryMatch& qmatch) if (qmatch.has_flag(QueryMatch::Flags::Last)) info.add_prop( ":last-child", symbol_t()); 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)) info.add_prop( ":duplicate", symbol_t()); if (qmatch.has_flag(QueryMatch::Flags::HasChild))