소스 검색

Increased shreshold of command-line option suggestion

Tatsuhiro Tsujikawa 13 년 전
부모
커밋
0b4dec0250
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/option_processing.cc

+ 2 - 2
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");