[BACK]Return to mansearch.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mansearch.c between version 1.54 and 1.55

version 1.54, 2015/02/27 16:02:10 version 1.55, 2015/03/11 13:11:22
Line 195  mansearch(const struct mansearch *search,
Line 195  mansearch(const struct mansearch *search,
         if (NULL == (e = exprcomp(search, argc, argv)))          if (NULL == (e = exprcomp(search, argc, argv)))
                 goto out;                  goto out;
   
         outbit = 0;  
         if (NULL != search->outkey) {          if (NULL != search->outkey) {
                   outbit = TYPE_Nd;
                 for (indexbit = 0, iterbit = 1;                  for (indexbit = 0, iterbit = 1;
                      indexbit < mansearch_keymax;                       indexbit < mansearch_keymax;
                      indexbit++, iterbit <<= 1) {                       indexbit++, iterbit <<= 1) {
Line 206  mansearch(const struct mansearch *search,
Line 206  mansearch(const struct mansearch *search,
                                 break;                                  break;
                         }                          }
                 }                  }
         }          } else
                   outbit = 0;
   
         /*          /*
          * Save a descriptor to the current working directory.           * Save a descriptor to the current working directory.

Legend:
Removed from v.1.54  
changed lines
  Added in v.1.55

CVSweb