lib: rename support-ngrams => ngrams-enabled

For consistency.
This commit is contained in:
Dirk-Jan C. Binnema
2026-07-22 17:34:13 +03:00
committed by Seth Ladygo
parent a347d3ada0
commit d24347bad6
7 changed files with 11 additions and 11 deletions

View File

@ -103,7 +103,7 @@ Sexp parse_query(const std::string& expr, bool expand=false);
*/
enum struct ParserFlags {
None = 0 << 0,
SupportNgrams = 1 << 0, /**< Support Xapian's Ngrams for CJK etc. handling */
NgramsEnabled = 1 << 0, /**< Support Xapian's Ngrams for CJK etc. handling */
XapianParser = 1 << 1, /**< For testing only, use Xapian's
* built-in QueryParser; this is not
* fully compatible with mu, only useful