[BACK]Return to man.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / man

Diff for /src/usr.bin/man/Attic/man.c between version 1.15 and 1.16

version 1.15, 1999/10/18 01:46:36 version 1.16, 2001/01/31 19:26:51
Line 561 
Line 561 
                 intmpp = addlist("_intmp");                  intmpp = addlist("_intmp");
   
         /* Move to the printf(3) format string. */          /* Move to the printf(3) format string. */
         for (; *fmt && isspace(*fmt); ++fmt);          for (; *fmt && isspace(*fmt); ++fmt)
                   ;
   
         /*          /*
          * Get a temporary file and build a version of the file           * Get a temporary file and build a version of the file
Line 681 
Line 682 
          * if the user uses "more", we make it "more -s"; watch out for           * if the user uses "more", we make it "more -s"; watch out for
          * PAGER = "mypager /usr/ucb/more"           * PAGER = "mypager /usr/ucb/more"
          */           */
         for (p = name; *p && !isspace(*p); ++p);          for (p = name; *p && !isspace(*p); ++p)
         for (; p > name && *p != '/'; --p);                  ;
           for (; p > name && *p != '/'; --p)
                   ;
         if (p != name)          if (p != name)
                 ++p;                  ++p;
   

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16