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

Diff for /mandoc/term.c between version 1.98 and 1.100

version 1.98, 2009/09/15 08:16:20 version 1.100, 2009/09/16 15:08:31
Line 24 
Line 24 
 #include "man.h"  #include "man.h"
 #include "mdoc.h"  #include "mdoc.h"
   
 extern  int               man_run(struct termp *,  extern  void              man_run(struct termp *,
                                 const struct man *);                                  const struct man *);
 extern  int               mdoc_run(struct termp *,  extern  void              mdoc_run(struct termp *,
                                 const struct mdoc *);                                  const struct mdoc *);
   
 static  struct termp     *term_alloc(enum termenc);  static  struct termp     *term_alloc(enum termenc);
Line 39  static void    do_reserved(struct termp *,
Line 39  static void    do_reserved(struct termp *,
                                 const char *, size_t);                                  const char *, size_t);
 static  void              buffer(struct termp *, char);  static  void              buffer(struct termp *, char);
 static  void              encode(struct termp *, char);  static  void              encode(struct termp *, char);
 static  int               isopendelim(const char *);  
 static  int               isclosedelim(const char *);  
   
   
 void *  void *
Line 51  ascii_alloc(void)
Line 49  ascii_alloc(void)
 }  }
   
   
 int  void
 terminal_man(void *arg, const struct man *man)  terminal_man(void *arg, const struct man *man)
 {  {
         struct termp    *p;          struct termp    *p;
Line 60  terminal_man(void *arg, const struct man *man)
Line 58  terminal_man(void *arg, const struct man *man)
         if (NULL == p->symtab)          if (NULL == p->symtab)
                 p->symtab = term_ascii2htab();                  p->symtab = term_ascii2htab();
   
         return(man_run(p, man));          man_run(p, man);
 }  }
   
   
 int  void
 terminal_mdoc(void *arg, const struct mdoc *mdoc)  terminal_mdoc(void *arg, const struct mdoc *mdoc)
 {  {
         struct termp    *p;          struct termp    *p;
Line 73  terminal_mdoc(void *arg, const struct mdoc *mdoc)
Line 71  terminal_mdoc(void *arg, const struct mdoc *mdoc)
         if (NULL == p->symtab)          if (NULL == p->symtab)
                 p->symtab = term_ascii2htab();                  p->symtab = term_ascii2htab();
   
         return(mdoc_run(p, mdoc));          mdoc_run(p, mdoc);
 }  }
   
   
Line 112  term_alloc(enum termenc enc)
Line 110  term_alloc(enum termenc enc)
 }  }
   
   
 static int  
 isclosedelim(const char *p)  
 {  
   
         if ( ! (*p && 0 == *(p + 1)))  
                 return(0);  
   
         switch (*p) {  
         case('.'):  
                 /* FALLTHROUGH */  
         case(','):  
                 /* FALLTHROUGH */  
         case(';'):  
                 /* FALLTHROUGH */  
         case(':'):  
                 /* FALLTHROUGH */  
         case('?'):  
                 /* FALLTHROUGH */  
         case('!'):  
                 /* FALLTHROUGH */  
         case(')'):  
                 /* FALLTHROUGH */  
         case(']'):  
                 /* FALLTHROUGH */  
         case('}'):  
                 return(1);  
         default:  
                 break;  
         }  
   
         return(0);  
 }  
   
   
 static int  
 isopendelim(const char *p)  
 {  
   
         if ( ! (*p && 0 == *(p + 1)))  
                 return(0);  
   
         switch (*p) {  
         case('('):  
                 /* FALLTHROUGH */  
         case('['):  
                 /* FALLTHROUGH */  
         case('{'):  
                 return(1);  
         default:  
                 break;  
         }  
   
         return(0);  
 }  
   
   
 /*  /*
  * Flush a line of text.  A "line" is loosely defined as being something   * Flush a line of text.  A "line" is loosely defined as being something
  * that should be followed by a newline, regardless of whether it's   * that should be followed by a newline, regardless of whether it's
Line 542  term_word(struct termp *p, const char *word)
Line 484  term_word(struct termp *p, const char *word)
 {  {
         const char       *sv;          const char       *sv;
   
         if (isclosedelim(word))          sv = word;
                 if ( ! (TERMP_IGNDELIM & p->flags))  
                         p->flags |= TERMP_NOSPACE;  
   
           if (word[0] && 0 == word[1])
                   switch (word[0]) {
                   case('.'):
                           /* FALLTHROUGH */
                   case(','):
                           /* 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))
                 buffer(p, ' ');                  buffer(p, ' ');
   
         if ( ! (p->flags & TERMP_NONOSPACE))          if ( ! (p->flags & TERMP_NONOSPACE))
                 p->flags &= ~TERMP_NOSPACE;                  p->flags &= ~TERMP_NOSPACE;
   
         for (sv = word; *word; word++)          for ( ; *word; word++)
                 if ('\\' != *word)                  if ('\\' != *word)
                         encode(p, *word);                          encode(p, *word);
                 else                  else
                         do_escaped(p, &word);                          do_escaped(p, &word);
   
         if (isopendelim(sv))          if (sv[0] && 0 == sv[1])
                 p->flags |= TERMP_NOSPACE;                  switch (sv[0]) {
                   case('('):
                           /* FALLTHROUGH */
                   case('['):
                           /* FALLTHROUGH */
                   case('{'):
                           p->flags |= TERMP_NOSPACE;
                           break;
                   default:
                           break;
                   }
 }  }
   
   

Legend:
Removed from v.1.98  
changed lines
  Added in v.1.100

CVSweb