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

Diff for /mandoc/man.c between version 1.45 and 1.49

version 1.45, 2009/10/30 05:58:37 version 1.49, 2010/01/07 10:24:43
Line 14 
Line 14 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #ifdef HAVE_CONFIG_H
   #include "config.h"
   #endif
   
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
Line 72  static int   pstring(struct man *, int, int, 
Line 76  static int   pstring(struct man *, int, int, 
                                 const char *, size_t);                                  const char *, size_t);
 static  int              macrowarn(struct man *, int, const char *);  static  int              macrowarn(struct man *, int, const char *);
   
 #ifdef __linux__  
 extern  size_t            strlcpy(char *, const char *, size_t);  
 #endif  
   
   
 const struct man_node *  const struct man_node *
 man_node(const struct man *m)  man_node(const struct man *m)
 {  {
Line 365  static int
Line 365  static int
 man_ptext(struct man *m, int line, char *buf)  man_ptext(struct man *m, int line, char *buf)
 {  {
         int              i, j;          int              i, j;
           char             sv;
   
         /* Literal free-form text whitespace is preserved. */          /* Literal free-form text whitespace is preserved. */
   
Line 378  man_ptext(struct man *m, int line, char *buf)
Line 379  man_ptext(struct man *m, int line, char *buf)
   
         for (i = 0; ' ' == buf[i]; i++)          for (i = 0; ' ' == buf[i]; i++)
                 /* Skip leading whitespace. */ ;                  /* Skip leading whitespace. */ ;
         if (0 == buf[i]) {  
           if ('\0' == buf[i]) {
                   /* Trailing whitespace? */
                   if (i && ' ' == buf[i - 1])
                           if ( ! man_pwarn(m, line, i - 1, WTSPACE))
                                   return(0);
                 if ( ! pstring(m, line, 0, &buf[i], 0))                  if ( ! pstring(m, line, 0, &buf[i], 0))
                         return(0);                          return(0);
                 goto descope;                  goto descope;
Line 392  man_ptext(struct man *m, int line, char *buf)
Line 398  man_ptext(struct man *m, int line, char *buf)
                 if (i && ' ' == buf[i] && '\\' == buf[i - 1])                  if (i && ' ' == buf[i] && '\\' == buf[i - 1])
                         continue;                          continue;
   
                 buf[i++] = 0;                  sv = buf[i];
                   buf[i++] = '\0';
   
                 if ( ! pstring(m, line, j, &buf[j], (size_t)(i - j)))                  if ( ! pstring(m, line, j, &buf[j], (size_t)(i - j)))
                         return(0);                          return(0);
   
                   /* Trailing whitespace?  Check at overwritten byte. */
   
                   if (' ' == sv && '\0' == buf[i])
                           if ( ! man_pwarn(m, line, i - 1, WTSPACE))
                                   return(0);
   
                 for ( ; ' ' == buf[i]; i++)                  for ( ; ' ' == buf[i]; i++)
                         /* Skip trailing whitespace. */ ;                          /* Skip trailing whitespace. */ ;
   
                 j = i;                  j = i;
                 if (0 == buf[i])  
                   /* Trailing whitespace? */
   
                   if (' ' == buf[i - 1] && '\0' == buf[i])
                           if ( ! man_pwarn(m, line, i - 1, WTSPACE))
                                   return(0);
   
                   if ('\0' == buf[i])
                         break;                          break;
         }          }
   
Line 454  man_pmacro(struct man *m, int ln, char *buf)
Line 475  man_pmacro(struct man *m, int ln, char *buf)
   
         fl = m->flags;          fl = m->flags;
   
         if (0 == buf[1])          if ('\0' == buf[1])
                 goto out;                  return(1);
   
         i = 1;          i = 1;
   
Line 463  man_pmacro(struct man *m, int ln, char *buf)
Line 484  man_pmacro(struct man *m, int ln, char *buf)
                 i++;                  i++;
                 while (buf[i] && ' ' == buf[i])                  while (buf[i] && ' ' == buf[i])
                         i++;                          i++;
                 if (0 == buf[i])                  if ('\0' == buf[i])
                         goto out;                          goto out;
         }          }
   
Line 472  man_pmacro(struct man *m, int ln, char *buf)
Line 493  man_pmacro(struct man *m, int ln, char *buf)
         /* Copy the first word into a nil-terminated buffer. */          /* Copy the first word into a nil-terminated buffer. */
   
         for (j = 0; j < 4; j++, i++) {          for (j = 0; j < 4; j++, i++) {
                 if (0 == (mac[j] = buf[i]))                  if ('\0' == (mac[j] = buf[i]))
                         break;                          break;
                 else if (' ' == buf[i])                  else if (' ' == buf[i])
                         break;                          break;
Line 484  man_pmacro(struct man *m, int ln, char *buf)
Line 505  man_pmacro(struct man *m, int ln, char *buf)
                 return(man_perr(m, ln, i, WNPRINT));                  return(man_perr(m, ln, i, WNPRINT));
         }          }
   
         mac[j] = 0;          mac[j] = '\0';
   
         if (j == 4 || j < 1) {          if (j == 4 || j < 1) {
                 if ( ! (MAN_IGN_MACRO & m->pflags)) {                  if ( ! (MAN_IGN_MACRO & m->pflags)) {
Line 506  man_pmacro(struct man *m, int ln, char *buf)
Line 527  man_pmacro(struct man *m, int ln, char *buf)
   
         while (buf[i] && ' ' == buf[i])          while (buf[i] && ' ' == buf[i])
                 i++;                  i++;
   
           /* Trailing whitespace? */
   
           if ('\0' == buf[i] && ' ' == buf[i - 1])
                   if ( ! man_pwarn(m, ln, i - 1, WTSPACE))
                           goto err;
   
         /* Remove prior ELINE macro, if applicable. */          /* Remove prior ELINE macro, if applicable. */
   

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.49

CVSweb