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

Diff for /mandoc/Attic/manpage.c between version 1.4 and 1.7

version 1.4, 2013/06/05 02:00:26 version 1.7, 2014/01/06 03:02:46
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2012 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2013 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 89  main(int argc, char *argv[])
Line 90  main(int argc, char *argv[])
         search.deftype = TYPE_Nm | TYPE_Nd;          search.deftype = TYPE_Nm | TYPE_Nd;
   
         manpath_parse(&paths, conf_file, defpaths, auxpaths);          manpath_parse(&paths, conf_file, defpaths, auxpaths);
         ch = mansearch(&search, &paths, argc, argv, &res, &sz);          ch = mansearch(&search, &paths, argc, argv, "Nd", &res, &sz);
         manpath_free(&paths);          manpath_free(&paths);
   
         if (0 == ch)          if (0 == ch)
Line 106  main(int argc, char *argv[])
Line 107  main(int argc, char *argv[])
   
         for (i = 0; i < sz; i++) {          for (i = 0; i < sz; i++) {
                 printf("%6zu  %s: %s\n",                  printf("%6zu  %s: %s\n",
                         i + 1, res[i].file, res[i].desc);                          i + 1, res[i].names, res[i].output);
                 free(res[i].desc);                  free(res[i].names);
                   free(res[i].output);
         }          }
   
         if (0 == term) {          if (0 == term) {
                   for (i = 0; i < sz; i++)
                           free(res[i].file);
                 free(res);                  free(res);
                 return(EXIT_SUCCESS);                  return(EXIT_SUCCESS);
         }          }
Line 127  main(int argc, char *argv[])
Line 131  main(int argc, char *argv[])
                 }                  }
   
         if (0 == i) {          if (0 == i) {
                   for (i = 0; i < sz; i++)
                           free(res[i].file);
                 free(res);                  free(res);
                 return(EXIT_SUCCESS);                  return(EXIT_SUCCESS);
         }          }
 show:  show:
         cmd = res[i - 1].form ? "mandoc" : "cat";          cmd = res[i - 1].form ? "mandoc" : "cat";
         strlcpy(buf, res[i - 1].file, PATH_MAX);          strlcpy(buf, res[i - 1].file, PATH_MAX);
           for (i = 0; i < sz; i++)
                   free(res[i].file);
         free(res);          free(res);
   
         show(cmd, buf);          show(cmd, buf);

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.7

CVSweb