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

Diff for /mandoc/main.c between version 1.238 and 1.239

version 1.238, 2015/04/29 11:04:17 version 1.239, 2015/07/17 22:38:29
Line 39 
Line 39 
 #include "roff.h"  #include "roff.h"
 #include "mdoc.h"  #include "mdoc.h"
 #include "man.h"  #include "man.h"
   #include "tag.h"
 #include "main.h"  #include "main.h"
 #include "manconf.h"  #include "manconf.h"
 #include "mansearch.h"  #include "mansearch.h"
Line 497  out:
Line 498  out:
   
         if (pager_pid != 0 && pager_pid != 1) {          if (pager_pid != 0 && pager_pid != 1) {
                 fclose(stdout);                  fclose(stdout);
                   tag_write();
                 waitpid(pager_pid, NULL, 0);                  waitpid(pager_pid, NULL, 0);
                   tag_unlink();
         }          }
   
         return((int)rc);          return((int)rc);
Line 959  spawn_pager(void)
Line 962  spawn_pager(void)
         char            *argv[MAX_PAGER_ARGS];          char            *argv[MAX_PAGER_ARGS];
         const char      *pager;          const char      *pager;
         char            *cp;          char            *cp;
           size_t           cmdlen;
         int              fildes[2];          int              fildes[2];
         int              argc;          int              argc;
         pid_t            pager_pid;          pid_t            pager_pid;
   
           pager = getenv("MANPAGER");
           if (pager == NULL || *pager == '\0')
                   pager = getenv("PAGER");
           if (pager == NULL || *pager == '\0')
                   pager = "more -s";
           cp = mandoc_strdup(pager);
   
           /*
            * Parse the pager command into words.
            * Intentionally do not do anything fancy here.
            */
   
           argc = 0;
           while (argc + 4 < MAX_PAGER_ARGS) {
                   argv[argc++] = cp;
                   cp = strchr(cp, ' ');
                   if (cp == NULL)
                           break;
                   *cp++ = '\0';
                   while (*cp == ' ')
                           cp++;
                   if (*cp == '\0')
                           break;
           }
   
           /* Read all text right away and use the tag file. */
   
           if ((cmdlen = strlen(argv[0])) >= 4) {
                   cp = argv[0] + cmdlen - 4;
                   if (strcmp(cp, "less") == 0 ||
                       strcmp(cp, "more") == 0) {
                           tag_init();
                           argv[argc++] = mandoc_strdup("+G1G");
                           argv[argc++] = mandoc_strdup("-T");
                           argv[argc++] = tag_filename();
                   }
           }
           argv[argc] = NULL;
   
         if (pipe(fildes) == -1) {          if (pipe(fildes) == -1) {
                 fprintf(stderr, "%s: pipe: %s\n",                  fprintf(stderr, "%s: pipe: %s\n",
                     progname, strerror(errno));                      progname, strerror(errno));
Line 997  spawn_pager(void)
Line 1040  spawn_pager(void)
                 exit((int)MANDOCLEVEL_SYSERR);                  exit((int)MANDOCLEVEL_SYSERR);
         }          }
         close(fildes[0]);          close(fildes[0]);
   
         pager = getenv("MANPAGER");  
         if (pager == NULL || *pager == '\0')  
                 pager = getenv("PAGER");  
         if (pager == NULL || *pager == '\0')  
                 pager = "more -s";  
         cp = mandoc_strdup(pager);  
   
         /*  
          * Parse the pager command into words.  
          * Intentionally do not do anything fancy here.  
          */  
   
         argc = 0;  
         while (argc + 1 < MAX_PAGER_ARGS) {  
                 argv[argc++] = cp;  
                 cp = strchr(cp, ' ');  
                 if (cp == NULL)  
                         break;  
                 *cp++ = '\0';  
                 while (*cp == ' ')  
                         cp++;  
                 if (*cp == '\0')  
                         break;  
         }  
         argv[argc] = NULL;  
   
         /* Hand over to the pager. */          /* Hand over to the pager. */
   

Legend:
Removed from v.1.238  
changed lines
  Added in v.1.239

CVSweb