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

Diff for /mandoc/mdoc_argv.c between version 1.106 and 1.107

version 1.106, 2015/10/15 22:45:43 version 1.107, 2015/10/17 00:21:07
Line 449  args(struct roff_man *mdoc, int line, int *pos,
Line 449  args(struct roff_man *mdoc, int line, int *pos,
 {  {
         char            *p;          char            *p;
         int              pairs;          int              pairs;
         enum margserr    rc;  
   
         if (buf[*pos] == '\0') {          if (buf[*pos] == '\0') {
                 if (mdoc->flags & MDOC_PHRASELIT &&                  if (mdoc->flags & MDOC_PHRASELIT &&
                     ! (mdoc->flags & MDOC_PPHRASE)) {                      ! (mdoc->flags & MDOC_PHRASE)) {
                         mandoc_msg(MANDOCERR_ARG_QUOTE,                          mandoc_msg(MANDOCERR_ARG_QUOTE,
                             mdoc->parse, line, *pos, NULL);                              mdoc->parse, line, *pos, NULL);
                         mdoc->flags &= ~MDOC_PHRASELIT;                          mdoc->flags &= ~MDOC_PHRASELIT;
Line 473  args(struct roff_man *mdoc, int line, int *pos,
Line 472  args(struct roff_man *mdoc, int line, int *pos,
   
         if (fl == ARGSFL_TABSEP) {          if (fl == ARGSFL_TABSEP) {
                 if ((p = strchr(*v, '\t')) != NULL) {                  if ((p = strchr(*v, '\t')) != NULL) {
                         /* Skip any blank characters after the tab. */  
                           /*
                            * Words right before and right after
                            * tab characters are not parsed,
                            * unless there is a blank in between.
                            */
   
                           if (p[-1] != ' ')
                                   mdoc->flags |= MDOC_PHRASEQL;
                           if (p[1] != ' ')
                                   mdoc->flags |= MDOC_PHRASEQN;
   
                           /*
                            * One or more blanks after a tab cause
                            * one leading blank in the next column.
                            * So skip all but one of them.
                            */
   
                         *pos += (int)(p - *v) + 1;                          *pos += (int)(p - *v) + 1;
                         while (buf[*pos] == ' ')                          while (buf[*pos] == ' ' && buf[*pos + 1] == ' ')
                                 (*pos)++;                                  (*pos)++;
                         rc = ARGS_PPHRASE;  
                           /*
                            * A tab at the end of an input line
                            * switches to the next column.
                            */
   
                           if (buf[*pos] == '\0' || buf[*pos + 1] == '\0')
                                   mdoc->flags |= MDOC_PHRASEQN;
                 } else {                  } else {
                         p = strchr(*v, '\0');                          p = strchr(*v, '\0');
                         if (p[-1] == ' ')                          if (p[-1] == ' ')
                                 mandoc_msg(MANDOCERR_SPACE_EOL,                                  mandoc_msg(MANDOCERR_SPACE_EOL,
                                     mdoc->parse, line, *pos, NULL);                                      mdoc->parse, line, *pos, NULL);
                         *pos += (int)(p - *v);                          *pos += (int)(p - *v);
                         rc = ARGS_PEND;  
                 }                  }
   
                 /* Skip any trailing blank characters. */                  /* Skip any trailing blank characters. */
Line 493  args(struct roff_man *mdoc, int line, int *pos,
Line 515  args(struct roff_man *mdoc, int line, int *pos,
                         p--;                          p--;
                 *p = '\0';                  *p = '\0';
   
                 return rc;                  return ARGS_PHRASE;
         }          }
   
         /*          /*
Line 504  args(struct roff_man *mdoc, int line, int *pos,
Line 526  args(struct roff_man *mdoc, int line, int *pos,
          * Whitespace is NOT involved in literal termination.           * Whitespace is NOT involved in literal termination.
          */           */
   
         if (MDOC_PHRASELIT & mdoc->flags || '\"' == buf[*pos]) {          if (mdoc->flags & MDOC_PHRASELIT || buf[*pos] == '\"') {
                 if ( ! (MDOC_PHRASELIT & mdoc->flags))                  if ( ! (mdoc->flags & MDOC_PHRASELIT))
                         *v = &buf[++(*pos)];                          *v = &buf[++(*pos)];
   
                 if (MDOC_PPHRASE & mdoc->flags)                  if (mdoc->flags & MDOC_PHRASE)
                         mdoc->flags |= MDOC_PHRASELIT;                          mdoc->flags |= MDOC_PHRASELIT;
   
                 pairs = 0;                  pairs = 0;
Line 528  args(struct roff_man *mdoc, int line, int *pos,
Line 550  args(struct roff_man *mdoc, int line, int *pos,
                 if (pairs)                  if (pairs)
                         buf[*pos - pairs] = '\0';                          buf[*pos - pairs] = '\0';
   
                 if ('\0' == buf[*pos]) {                  if (buf[*pos] == '\0') {
                         if (MDOC_PPHRASE & mdoc->flags)                          if ( ! (mdoc->flags & MDOC_PHRASE))
                                 return ARGS_QWORD;                                  mandoc_msg(MANDOCERR_ARG_QUOTE,
                         mandoc_msg(MANDOCERR_ARG_QUOTE,                                      mdoc->parse, line, *pos, NULL);
                             mdoc->parse, line, *pos, NULL);  
                         return ARGS_QWORD;                          return ARGS_QWORD;
                 }                  }
   
Line 555  args(struct roff_man *mdoc, int line, int *pos,
Line 576  args(struct roff_man *mdoc, int line, int *pos,
         p = &buf[*pos];          p = &buf[*pos];
         *v = mandoc_getarg(mdoc->parse, &p, line, pos);          *v = mandoc_getarg(mdoc->parse, &p, line, pos);
   
           /*
            * After parsing the last word in this phrase,
            * tell lookup() whether or not to interpret it.
            */
   
           if (*p == '\0' && mdoc->flags & MDOC_PHRASEQL) {
                   mdoc->flags &= ~MDOC_PHRASEQL;
                   mdoc->flags |= MDOC_PHRASEQF;
           }
         return ARGS_WORD;          return ARGS_WORD;
 }  }
   

Legend:
Removed from v.1.106  
changed lines
  Added in v.1.107

CVSweb