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

Diff for /mandoc/mdoc_macro.c between version 1.60 and 1.65

version 1.60, 2010/05/13 06:22:11 version 1.65, 2010/05/15 04:47:38
Line 26 
Line 26 
 #include <time.h>  #include <time.h>
   
 #include "libmdoc.h"  #include "libmdoc.h"
   #include "libmandoc.h"
   
 enum    rew {  enum    rew {
         REWIND_REWIND,          REWIND_REWIND,
Line 48  static int    append_delims(struct mdoc *, 
Line 49  static int    append_delims(struct mdoc *, 
 static  enum mdoct      lookup(enum mdoct, const char *);  static  enum mdoct      lookup(enum mdoct, const char *);
 static  enum mdoct      lookup_raw(const char *);  static  enum mdoct      lookup_raw(const char *);
 static  int             phrase(struct mdoc *, int, int,  static  int             phrase(struct mdoc *, int, int,
                                 char *, enum margserr, int);                                  char *, enum margserr);
 static  enum mdoct      rew_alt(enum mdoct);  static  enum mdoct      rew_alt(enum mdoct);
 static  int             rew_dobreak(enum mdoct,  static  int             rew_dobreak(enum mdoct,
                                 const struct mdoc_node *);                                  const struct mdoc_node *);
Line 888  in_line(MACRO_PROT_ARGS)
Line 889  in_line(MACRO_PROT_ARGS)
 static int  static int
 blk_full(MACRO_PROT_ARGS)  blk_full(MACRO_PROT_ARGS)
 {  {
         int               la, pcnt;          int               la, nl;
         struct mdoc_arg  *arg;          struct mdoc_arg  *arg;
         struct mdoc_node *head; /* save of head macro */          struct mdoc_node *head; /* save of head macro */
         struct mdoc_node *body; /* save of body macro */          struct mdoc_node *body; /* save of body macro */
Line 900  blk_full(MACRO_PROT_ARGS)
Line 901  blk_full(MACRO_PROT_ARGS)
         enum margverr     av;          enum margverr     av;
         char             *p;          char             *p;
   
           nl = MDOC_NEWLINE & m->flags;
   
         /* Close out prior implicit scope. */          /* Close out prior implicit scope. */
   
         if ( ! (MDOC_EXPLICIT & mdoc_macros[tok].flags)) {          if ( ! (MDOC_EXPLICIT & mdoc_macros[tok].flags)) {
Line 959  blk_full(MACRO_PROT_ARGS)
Line 962  blk_full(MACRO_PROT_ARGS)
   
         ac = ARGS_ERROR;          ac = ARGS_ERROR;
   
         for (pcnt = 0; ; ) {          for ( ; ; ) {
                 la = *pos;                  la = *pos;
                 lac = ac;                  lac = ac;
                 ac = mdoc_args(m, line, pos, buf, tok, &p);                  ac = mdoc_args(m, line, pos, buf, tok, &p);
Line 969  blk_full(MACRO_PROT_ARGS)
Line 972  blk_full(MACRO_PROT_ARGS)
                 if (ARGS_EOLN == ac)                  if (ARGS_EOLN == ac)
                         break;                          break;
   
                   if (ARGS_PEND == ac) {
                           if (ARGS_PPHRASE == lac)
                                   ac = ARGS_PPHRASE;
                           else
                                   ac = ARGS_PHRASE;
                   }
   
                 /* Don't emit leading punct. for phrases. */                  /* Don't emit leading punct. for phrases. */
   
                 if (NULL == head &&                  if (NULL == head &&
                                 ARGS_PHRASE != ac &&                                  ARGS_PHRASE != ac &&
                                 ARGS_PPHRASE != ac &&                                  ARGS_PPHRASE != ac &&
                                 ARGS_PEND != ac &&  
                                 ARGS_QWORD != ac &&                                  ARGS_QWORD != ac &&
                                 1 == mdoc_isdelim(p)) {                                  1 == mdoc_isdelim(p)) {
                         if ( ! mdoc_word_alloc(m, line, la, p))                          if ( ! mdoc_word_alloc(m, line, la, p))
Line 986  blk_full(MACRO_PROT_ARGS)
Line 995  blk_full(MACRO_PROT_ARGS)
   
                 if (NULL == head ||                  if (NULL == head ||
                                 ARGS_PHRASE == ac ||                                  ARGS_PHRASE == ac ||
                                 ARGS_PEND == ac ||  
                                 ARGS_PPHRASE == ac) {                                  ARGS_PPHRASE == ac) {
                         if ( ! mdoc_head_alloc(m, line, ppos, tok))                          if ( ! mdoc_head_alloc(m, line, ppos, tok))
                                 return(0);                                  return(0);
                         head = m->last;                          head = m->last;
                 }                  }
   
                 if (ARGS_PHRASE == ac ||                  if (ARGS_PHRASE == ac || ARGS_PPHRASE == ac) {
                                 ARGS_PEND == ac ||                          if (ARGS_PPHRASE == ac)
                                 ARGS_PPHRASE == ac) {                                  m->flags |= MDOC_PPHRASE;
                         /*                          if ( ! phrase(m, line, la, buf, ac))
                          * Special treatment for the last phrase.  A  
                          * prior ARGS_PHRASE gets is handled as a  
                          * regular ARGS_PHRASE, but a prior ARGS_PPHRASE  
                          * has special handling.  
                          */  
                         if (ARGS_PEND == ac && ARGS_ERROR == lac)  
                                 ac = ARGS_PHRASE;  
                         else if (ARGS_PEND == ac && ARGS_PHRASE == lac)  
                                 ac = ARGS_PHRASE;  
   
                         if ( ! phrase(m, line, la, buf, ac, pcnt++))  
                                 return(0);                                  return(0);
                           m->flags &= ~MDOC_PPHRASE;
                         if ( ! rew_sub(MDOC_HEAD, m, tok, line, ppos))                          if ( ! rew_sub(MDOC_HEAD, m, tok, line, ppos))
                                 return(0);                                  return(0);
                         continue;                          continue;
Line 1033  blk_full(MACRO_PROT_ARGS)
Line 1031  blk_full(MACRO_PROT_ARGS)
                 head = m->last;                  head = m->last;
         }          }
   
         if (1 == ppos && ! append_delims(m, line, pos, buf))          if (nl && ! append_delims(m, line, pos, buf))
                 return(0);                  return(0);
   
         /* If we've already opened our body, exit now. */          /* If we've already opened our body, exit now. */
Line 1073  blk_full(MACRO_PROT_ARGS)
Line 1071  blk_full(MACRO_PROT_ARGS)
 static int  static int
 blk_part_imp(MACRO_PROT_ARGS)  blk_part_imp(MACRO_PROT_ARGS)
 {  {
         int               la;          int               la, nl;
         enum mdoct        ntok;          enum mdoct        ntok;
         enum margserr     ac;          enum margserr     ac;
         char             *p;          char             *p;
Line 1081  blk_part_imp(MACRO_PROT_ARGS)
Line 1079  blk_part_imp(MACRO_PROT_ARGS)
         struct mdoc_node *body; /* saved body context */          struct mdoc_node *body; /* saved body context */
         struct mdoc_node *n;          struct mdoc_node *n;
   
           nl = MDOC_NEWLINE & m->flags;
   
         /*          /*
          * A macro that spans to the end of the line.  This is generally           * A macro that spans to the end of the line.  This is generally
          * (but not necessarily) called as the first macro.  The block           * (but not necessarily) called as the first macro.  The block
Line 1151  blk_part_imp(MACRO_PROT_ARGS)
Line 1151  blk_part_imp(MACRO_PROT_ARGS)
                 body = m->last;                  body = m->last;
         }          }
   
           for (n = body->child; n && n->next; n = n->next)
                   /* Do nothing. */ ;
   
         /*          /*
            * End of sentence spacing: if the last node is a text node and
            * has a trailing period, then mark it as being end-of-sentence.
            */
   
           if (n && MDOC_TEXT == n->type && n->string)
                   if (mandoc_eos(n->string, strlen(n->string)))
                           n->flags |= MDOC_EOS;
   
           /* Up-propogate the end-of-space flag. */
   
           if (n && (MDOC_EOS & n->flags)) {
                   body->flags |= MDOC_EOS;
                   body->parent->flags |= MDOC_EOS;
           }
   
           /*
          * If we can't rewind to our body, then our scope has already           * If we can't rewind to our body, then our scope has already
          * been closed by another macro (like `Oc' closing `Op').  This           * been closed by another macro (like `Oc' closing `Op').  This
          * is ugly behaviour nodding its head to OpenBSD's overwhelming           * is ugly behaviour nodding its head to OpenBSD's overwhelming
          * crufty use of `Op' breakage.           * crufty use of `Op' breakage.
            *
            * FIXME - this should be ifdef'd OpenBSD?
          */           */
         for (n = m->last; n; n = n->parent)          for (n = m->last; n; n = n->parent)
                 if (body == n)                  if (body == n)
Line 1169  blk_part_imp(MACRO_PROT_ARGS)
Line 1190  blk_part_imp(MACRO_PROT_ARGS)
   
         /* Standard appending of delimiters. */          /* Standard appending of delimiters. */
   
         if (1 == ppos && ! append_delims(m, line, pos, buf))          if (nl && ! append_delims(m, line, pos, buf))
                 return(0);                  return(0);
   
         /* Rewind scope, if applicable. */          /* Rewind scope, if applicable. */
Line 1291  blk_part_exp(MACRO_PROT_ARGS)
Line 1312  blk_part_exp(MACRO_PROT_ARGS)
 }  }
   
   
   /* ARGSUSED */
 static int  static int
 in_line_argn(MACRO_PROT_ARGS)  in_line_argn(MACRO_PROT_ARGS)
 {  {
Line 1535  obsolete(MACRO_PROT_ARGS)
Line 1557  obsolete(MACRO_PROT_ARGS)
  * macro is encountered.   * macro is encountered.
  */   */
 static int  static int
 phrase(struct mdoc *m, int line, int ppos, char *buf,  phrase(struct mdoc *m, int line, int ppos, char *buf, enum margserr ac)
                 enum margserr ac, int count)  
 {  {
         int              la, pos;          int              la, pos;
         enum margserr    aac;          enum margserr    aac;
         enum mdoct       ntok;          enum mdoct       ntok;
         char            *p;          char            *p;
   
         assert(ARGS_PHRASE == ac ||          assert(ARGS_PHRASE == ac || ARGS_PPHRASE == ac);
                         ARGS_PEND == ac ||  
                         ARGS_PPHRASE == ac);  
   
         if (count && ARGS_PPHRASE == ac)  
                 return(mdoc_word_alloc(m, line, ppos, &buf[ppos]));  
   
         for (pos = ppos; ; ) {          for (pos = ppos; ; ) {
                 la = pos;                  la = pos;
   
                 /* Note: no calling context! */  
                 aac = mdoc_zargs(m, line, &pos, buf, 0, &p);                  aac = mdoc_zargs(m, line, &pos, buf, 0, &p);
   
                 if (ARGS_ERROR == aac)                  if (ARGS_ERROR == aac)
Line 1561  phrase(struct mdoc *m, int line, int ppos, char *buf, 
Line 1576  phrase(struct mdoc *m, int line, int ppos, char *buf, 
                 if (ARGS_EOLN == aac)                  if (ARGS_EOLN == aac)
                         break;                          break;
   
                 ntok = ARGS_QWORD == aac || ARGS_PEND == ac ?                  ntok = ARGS_QWORD == aac ? MDOC_MAX : lookup_raw(p);
                         MDOC_MAX : lookup_raw(p);  
   
                 if (MDOC_MAX == ntok) {                  if (MDOC_MAX == ntok) {
                         if ( ! mdoc_word_alloc(m, line, la, p))                          if ( ! mdoc_word_alloc(m, line, la, p))

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.65

CVSweb