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

Diff for /mandoc/Attic/mdocterm.c between version 1.4 and 1.9

version 1.4, 2009/02/23 09:33:34 version 1.9, 2009/02/25 12:09:20
Line 24 
Line 24 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
   #ifndef __OpenBSD__
   #include <time.h>
   #endif
   
 #include "mmain.h"  #include "mmain.h"
 #include "term.h"  #include "term.h"
   
   #ifdef __NetBSD__
   #define xisspace(x) isspace((int)(x))
   #else
   #define xisspace(x) isspace((x))
   #endif
   
 enum    termstyle {  enum    termstyle {
         STYLE_CLEAR,          STYLE_CLEAR,
         STYLE_BOLD,          STYLE_BOLD,
Line 61  main(int argc, char *argv[])
Line 71  main(int argc, char *argv[])
         const struct mdoc *mdoc;          const struct mdoc *mdoc;
         struct termp     termp;          struct termp     termp;
   
         extern int       optreset;  
         extern int       optind;  
   
         p = mmain_alloc();          p = mmain_alloc();
   
         if ( ! mmain_getopt(p, argc, argv, NULL, NULL, NULL, NULL))          if ( ! mmain_getopt(p, argc, argv, NULL, NULL, NULL, NULL))
Line 136  flushln(struct termp *p)
Line 143  flushln(struct termp *p)
                  * Count up visible word characters.  Control sequences                   * Count up visible word characters.  Control sequences
                  * (starting with the CSI) aren't counted.                   * (starting with the CSI) aren't counted.
                  */                   */
                 assert( ! isspace(p->buf[i]));                  assert( ! xisspace(p->buf[i]));
   
                 /* LINTED */                  /* LINTED */
                 for (j = i, vsz = 0; j < p->col; j++) {                  for (j = i, vsz = 0; j < p->col; j++) {
                         if (isspace(p->buf[j]))                          if (xisspace(p->buf[j]))
                                 break;                                  break;
                         else if (27 == p->buf[j]) {                          else if (27 == p->buf[j]) {
                                 assert(j + 4 <= p->col);                                  assert(j + 4 <= p->col);
Line 166  flushln(struct termp *p)
Line 173  flushln(struct termp *p)
                         for (j = 0; j < p->offset; j++)                          for (j = 0; j < p->offset; j++)
                                 putchar(' ');                                  putchar(' ');
                         vis = 0;                          vis = 0;
                 } else if (vis + vsz >= maxvis) {                  } else if (vis + vsz >= maxvis)
                         /* FIXME */                          /* FIXME */
                         errx(1, "word breaks right margin");                          errx(1, "word breaks right margin");
                 }  
   
                 /*                  /*
                  * Write out the word and a trailing space.  Omit the                   * Write out the word and a trailing space.  Omit the
Line 177  flushln(struct termp *p)
Line 183  flushln(struct termp *p)
                  */                   */
   
                 for ( ; i < p->col; i++) {                  for ( ; i < p->col; i++) {
                         if (isspace(p->buf[i]))                          if (xisspace(p->buf[i]))
                                 break;                                  break;
                         putchar(p->buf[i]);                          putchar(p->buf[i]);
                 }                  }
Line 299  pescape(struct termp *p, const char *word, size_t *i, 
Line 305  pescape(struct termp *p, const char *word, size_t *i, 
                         stringa(p, "<-");                          stringa(p, "<-");
                 else if ('-' == word[*i] && '>' == word[*i + 1])                  else if ('-' == word[*i] && '>' == word[*i + 1])
                         stringa(p, "->");                          stringa(p, "->");
                   else if ('l' == word[*i] && 'q' == word[*i + 1])
                           chara(p, '\"');
                   else if ('r' == word[*i] && 'q' == word[*i + 1])
                           chara(p, '\"');
   
                 (*i)++;                  (*i)++;
                 return;                  return;
Line 378  word(struct termp *p, const char *word)
Line 388  word(struct termp *p, const char *word)
   
         /* LINTED */          /* LINTED */
         for (j = i = 0; i < len; i++) {          for (j = i = 0; i < len; i++) {
                 if ( ! isspace(word[i])) {                  if ( ! xisspace(word[i])) {
                         j++;                          j++;
                         continue;                          continue;
                 }                  }
Line 400  body(struct termp *p, const struct mdoc_meta *meta,
Line 410  body(struct termp *p, const struct mdoc_meta *meta,
                 const struct mdoc_node *node)                  const struct mdoc_node *node)
 {  {
         int              dochild;          int              dochild;
           struct termpair  pair;
   
         /* Pre-processing. */          /* Pre-processing. */
   
         dochild = 1;          dochild = 1;
           pair.type = 0;
   
         if (MDOC_TEXT != node->type) {          if (MDOC_TEXT != node->type) {
                 if (termacts[node->tok].pre)                  if (termacts[node->tok].pre)
                         if ( ! (*termacts[node->tok].pre)(p, meta, node))                          if ( ! (*termacts[node->tok].pre)(p, &pair, meta, node))
                                 dochild = 0;                                  dochild = 0;
         } else /* MDOC_TEXT == node->type */          } else /* MDOC_TEXT == node->type */
                 word(p, node->data.text.string);                  word(p, node->data.text.string);
   
         /* Children. */          /* Children. */
   
           switch (pair.type) {
           case (TERMPAIR_FLAG):
                   p->flags |= pair.data.flag;
                   break;
           default:
                   break;
           }
   
         if (dochild && node->child)          if (dochild && node->child)
                 body(p, meta, node->child);                  body(p, meta, node->child);
   
           switch (pair.type) {
           case (TERMPAIR_FLAG):
                   p->flags &= ~pair.data.flag;
                   break;
           default:
                   break;
           }
   
         /* Post-processing. */          /* Post-processing. */
   
         if (MDOC_TEXT != node->type)          if (MDOC_TEXT != node->type)
                 if (termacts[node->tok].post)                  if (termacts[node->tok].post)
                         (*termacts[node->tok].post)(p, meta, node);                          (*termacts[node->tok].post)(p, &pair, meta, node);
   
         /* Siblings. */          /* Siblings. */
   
Line 444  footer(struct termp *p, const struct mdoc_meta *meta)
Line 472  footer(struct termp *p, const struct mdoc_meta *meta)
   
         tm = localtime(&meta->date);          tm = localtime(&meta->date);
   
 #ifdef __linux__  #ifdef __OpenBSD__
         if (0 == strftime(buf, p->rmargin, "%B %d, %Y", tm))  
 #else  
         if (NULL == strftime(buf, p->rmargin, "%B %d, %Y", tm))          if (NULL == strftime(buf, p->rmargin, "%B %d, %Y", tm))
   #else
           if (0 == strftime(buf, p->rmargin, "%B %d, %Y", tm))
 #endif  #endif
                 err(1, "strftime");                  err(1, "strftime");
   

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.9

CVSweb