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

Diff for /mandoc/preconv.c between version 1.14 and 1.16

version 1.14, 2015/03/06 09:24:59 version 1.16, 2017/02/18 13:43:52
Line 26 
Line 26 
 #include "libmandoc.h"  #include "libmandoc.h"
   
 int  int
 preconv_encode(struct buf *ib, size_t *ii, struct buf *ob, size_t *oi,  preconv_encode(const struct buf *ib, size_t *ii, struct buf *ob, size_t *oi,
     int *filenc)      int *filenc)
 {  {
         unsigned char   *cu;          const unsigned char     *cu;
         int              nby;          int                      nby;
         unsigned int     accum;          unsigned int             accum;
   
         cu = (unsigned char *)ib->buf + *ii;          cu = (const unsigned char *)ib->buf + *ii;
         assert(*cu & 0x80);          assert(*cu & 0x80);
   
         if ( ! (*filenc & MPARSE_UTF8))          if ( ! (*filenc & MPARSE_UTF8))
Line 90  preconv_encode(struct buf *ib, size_t *ii, struct buf 
Line 90  preconv_encode(struct buf *ib, size_t *ii, struct buf 
         assert(accum < 0xd800 || accum > 0xdfff);          assert(accum < 0xd800 || accum > 0xdfff);
   
         *oi += snprintf(ob->buf + *oi, 11, "\\[u%.4X]", accum);          *oi += snprintf(ob->buf + *oi, 11, "\\[u%.4X]", accum);
         *ii = (char *)cu - ib->buf;          *ii = (const char *)cu - ib->buf;
         *filenc &= ~MPARSE_LATIN1;          *filenc &= ~MPARSE_LATIN1;
         return(1);          return 1;
   
 latin:  latin:
         if ( ! (*filenc & MPARSE_LATIN1))          if ( ! (*filenc & MPARSE_LATIN1))
                 return(0);                  return 0;
   
         *oi += snprintf(ob->buf + *oi, 11,          *oi += snprintf(ob->buf + *oi, 11,
             "\\[u%.4X]", (unsigned char)ib->buf[(*ii)++]);              "\\[u%.4X]", (unsigned char)ib->buf[(*ii)++]);
   
         *filenc &= ~MPARSE_UTF8;          *filenc &= ~MPARSE_UTF8;
         return(1);          return 1;
 }  }
   
 int  int
Line 123  preconv_cue(const struct buf *b, size_t offset)
Line 123  preconv_cue(const struct buf *b, size_t offset)
   
         if ((sz = (size_t)(eoln - ln)) < 10 ||          if ((sz = (size_t)(eoln - ln)) < 10 ||
             memcmp(ln, ".\\\" -*-", 7) || memcmp(eoln - 3, "-*-", 3))              memcmp(ln, ".\\\" -*-", 7) || memcmp(eoln - 3, "-*-", 3))
                 return(MPARSE_UTF8 | MPARSE_LATIN1);                  return MPARSE_UTF8 | MPARSE_LATIN1;
   
         /* Move after the header and adjust for the trailer. */          /* Move after the header and adjust for the trailer. */
   
Line 162  preconv_cue(const struct buf *b, size_t offset)
Line 162  preconv_cue(const struct buf *b, size_t offset)
                         sz--;                          sz--;
                 }                  }
                 if (0 == sz)                  if (0 == sz)
                         return(0);                          return 0;
   
                 /* Check us against known encodings. */                  /* Check us against known encodings. */
   
                 if (phsz > 4 && !strncasecmp(ln, "utf-8", 5))                  if (phsz > 4 && !strncasecmp(ln, "utf-8", 5))
                         return(MPARSE_UTF8);                          return MPARSE_UTF8;
                 if (phsz > 10 && !strncasecmp(ln, "iso-latin-1", 11))                  if (phsz > 10 && !strncasecmp(ln, "iso-latin-1", 11))
                         return(MPARSE_LATIN1);                          return MPARSE_LATIN1;
                 return(0);                  return 0;
         }          }
         return(MPARSE_UTF8 | MPARSE_LATIN1);          return MPARSE_UTF8 | MPARSE_LATIN1;
 }  }

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.16

CVSweb