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

Diff for /mandoc/eqn_term.c between version 1.15 and 1.19

version 1.15, 2017/08/23 20:29:42 version 1.19, 2018/12/13 05:23:38
Line 25 
Line 25 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "mandoc.h"  #include "eqn.h"
 #include "out.h"  #include "out.h"
 #include "term.h"  #include "term.h"
   
Line 52  static void
Line 52  static void
 eqn_box(struct termp *p, const struct eqn_box *bp)  eqn_box(struct termp *p, const struct eqn_box *bp)
 {  {
         const struct eqn_box *child;          const struct eqn_box *child;
           const char *cp;
         int delim;          int delim;
   
         /* Delimiters around this box? */          /* Delimiters around this box? */
Line 94  eqn_box(struct termp *p, const struct eqn_box *bp)
Line 95  eqn_box(struct termp *p, const struct eqn_box *bp)
                 if (strchr("!\"'),.:;?]}", *bp->text) != NULL)                  if (strchr("!\"'),.:;?]}", *bp->text) != NULL)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 term_word(p, bp->text);                  term_word(p, bp->text);
                 if (*bp->text != '\0' && strchr("\"'([{",                  if ((cp = strchr(bp->text, '\0')) > bp->text &&
                     bp->text[strlen(bp->text) - 1]) != NULL)                      (strchr("\"'([{", cp[-1]) != NULL ||
                        (bp->prev == NULL && (cp[-1] == '-' ||
                         (cp >= bp->text + 5 &&
                          strcmp(cp - 5, "\\[mi]") == 0)))))
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
         }          }
   
         /* Special box types. */          /* Special box types. */
   
         if (bp->pos == EQNPOS_SQRT) {          if (bp->pos == EQNPOS_SQRT) {
                 term_word(p, "sqrt");                  term_word(p, "\\(sr");
                 if (bp->first != NULL) {                  if (bp->first != NULL) {
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                         eqn_box(p, bp->first);                          eqn_box(p, bp->first);

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

CVSweb