From 0b4dec02505a0be3dabcd01eab98f015f115bed8 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 23 Sep 2012 15:06:39 +0900 Subject: [PATCH] Increased shreshold of command-line option suggestion --- src/option_processing.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/option_processing.cc b/src/option_processing.cc index 66be040e..ed2e1102 100644 --- a/src/option_processing.cc +++ b/src/option_processing.cc @@ -160,8 +160,8 @@ void showCandidates } std::sort(cands.begin(), cands.end()); int threshold = cands[0].first; - // threshold value 7 is borrowed from git, help.c. - if(threshold >= 7) { + // threshold value 12 is a magic value. + if(threshold > 12) { return; } global::cerr()->printf("\n");