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

Diff for /mandoc/man.c between version 1.48 and 1.50

version 1.48, 2010/01/07 10:05:24 version 1.50, 2010/03/22 05:59:32
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 379  man_ptext(struct man *m, int line, char *buf)
Line 380  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 393  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 514  man_pmacro(struct man *m, int ln, char *buf)
Line 534  man_pmacro(struct man *m, int ln, char *buf)
                 if ( ! man_pwarn(m, ln, i - 1, WTSPACE))                  if ( ! man_pwarn(m, ln, i - 1, WTSPACE))
                         goto err;                          goto err;
   
         /* Remove prior ELINE macro, if applicable. */          /*
            * Remove prior ELINE macro, as a macro is clobbering it by
            * being invoked without prior text.  Note that NSCOPED macros
            * do not close out ELINE macros, as they print no text.
            */
   
         if (m->flags & MAN_ELINE) {          if (m->flags & MAN_ELINE &&
                           ! (MAN_NSCOPED & man_macros[c].flags)) {
                 n = m->last;                  n = m->last;
                 assert(NULL == n->child);                  assert(NULL == n->child);
                 assert(0 == n->nchild);                  assert(0 == n->nchild);
                 if ( ! man_nwarn(m, n, WLNSCOPE))                  if ( ! man_nwarn(m, n, WLNSCOPE))
                         return(0);                          return(0);
   
                   /* FIXME: when called as in:
                    *
                    * .B
                    * .br
                    * .B
                    * .br
                    * hello
                    */
   
                 if (n->prev) {                  if (n->prev) {
                         assert(n != n->parent->child);                          assert(n != n->parent->child);
                         assert(n == n->prev->next);                          assert(n == n->prev->next);
Line 548  man_pmacro(struct man *m, int ln, char *buf)
Line 582  man_pmacro(struct man *m, int ln, char *buf)
                 goto err;                  goto err;
   
 out:  out:
         if ( ! (MAN_BLINE & fl))          /*
            * We weren't in a block-line scope when entering the
            * above-parsed macro, so return.
            */
   
           if ( ! (MAN_BLINE & fl)) {
                   m->flags &= ~MAN_ILINE;
                 return(1);                  return(1);
           }
   
           /*
            * If we're in a block scope, then allow this macro to slip by
            * without closing scope around it.
            */
   
           if (MAN_ILINE & m->flags) {
                   m->flags &= ~MAN_ILINE;
                   return(1);
           }
   
         /*          /*
          * If we've opened a new next-line element scope, then return           * If we've opened a new next-line element scope, then return

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.50

CVSweb