Commit 5149232d authored by Yuanle Song's avatar Yuanle Song
Browse files

v0.10.0 enable ue -> ve fuzzy by default.

parent 8b4d81ac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
# -*- mode: conf -*-
project('zero-pinyin-service', ['c', 'cpp'],
  version: '0.9.3',
  version: '0.10.0',
  license: 'GPL',
  meson_version: '>=0.1.0',
  default_options: [
+2 −1
Original line number Diff line number Diff line
@@ -356,7 +356,8 @@ add_candidate_to_builders(Candidate *c,
guint
to_pyzy_flag(const guint fuzzy_flag)
{
	guint result = 0;
	/* ue to ve is enabled by default. */
	guint result = PINYIN_CORRECT_UE_TO_VE;
	if (fuzzy_flag & FUZZY_FLAG_ZCS_ZHCHSH) {
		result = result |
			PINYIN_FUZZY_Z_ZH | PINYIN_FUZZY_ZH_Z |