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

Diff for /mandoc/term.c between version 1.178 and 1.180

version 1.178, 2011/03/15 16:23:51 version 1.180, 2011/03/17 09:16:38
Line 80  term_alloc(enum termenc enc)
Line 80  term_alloc(enum termenc enc)
 {  {
         struct termp    *p;          struct termp    *p;
   
         p = calloc(1, sizeof(struct termp));          p = mandoc_calloc(1, sizeof(struct termp));
         if (NULL == p) {  
                 perror(NULL);  
                 exit((int)MANDOCLEVEL_SYSERR);  
         }  
   
         p->enc = enc;          p->enc = enc;
         return(p);          return(p);
 }  }
Line 468  term_word(struct termp *p, const char *word)
Line 463  term_word(struct termp *p, const char *word)
   
         sv = word;          sv = word;
   
         if (word[0] && '\0' == word[1])          if (DELIM_CLOSE == mandoc_isdelim(word))
                 switch (word[0]) {                  if ( ! (TERMP_IGNDELIM & p->flags))
                 case('.'):                          p->flags |= TERMP_NOSPACE;
                         /* FALLTHROUGH */  
                 case(','):  
                         /* FALLTHROUGH */  
                 case(';'):  
                         /* FALLTHROUGH */  
                 case(':'):  
                         /* FALLTHROUGH */  
                 case('?'):  
                         /* FALLTHROUGH */  
                 case('!'):  
                         /* FALLTHROUGH */  
                 case(')'):  
                         /* FALLTHROUGH */  
                 case(']'):  
                         if ( ! (TERMP_IGNDELIM & p->flags))  
                                 p->flags |= TERMP_NOSPACE;  
                         break;  
                 default:  
                         break;  
                 }  
   
         if ( ! (TERMP_NOSPACE & p->flags)) {          if ( ! (TERMP_NOSPACE & p->flags)) {
                 if ( ! (TERMP_KEEP & p->flags)) {                  if ( ! (TERMP_KEEP & p->flags)) {
Line 553  term_word(struct termp *p, const char *word)
Line 528  term_word(struct termp *p, const char *word)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
         }          }
   
         /*          if (DELIM_OPEN == mandoc_isdelim(sv))
          * Note that we don't process the pipe: the parser sees it as                  p->flags |= TERMP_NOSPACE;
          * punctuation, but we don't in terms of typography.  
          */  
         if (sv[0] && '\0' == sv[1])  
                 switch (sv[0]) {  
                 case('('):  
                         /* FALLTHROUGH */  
                 case('['):  
                         p->flags |= TERMP_NOSPACE;  
                         break;  
                 default:  
                         break;  
                 }  
 }  }
   
   
Line 579  adjbuf(struct termp *p, size_t sz)
Line 542  adjbuf(struct termp *p, size_t sz)
         while (sz >= p->maxcols)          while (sz >= p->maxcols)
                 p->maxcols <<= 2;                  p->maxcols <<= 2;
   
         p->buf = realloc(p->buf, p->maxcols);          p->buf = mandoc_realloc(p->buf, p->maxcols);
         if (NULL == p->buf) {  
                 perror(NULL);  
                 exit((int)MANDOCLEVEL_SYSERR);  
         }  
 }  }
   
   

Legend:
Removed from v.1.178  
changed lines
  Added in v.1.180

CVSweb