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

Diff for /mandoc/Attic/action.c between version 1.17 and 1.22

version 1.17, 2009/02/20 11:04:23 version 1.22, 2009/02/27 10:55:16
Line 17 
Line 17 
  * PERFORMANCE OF THIS SOFTWARE.   * PERFORMANCE OF THIS SOFTWARE.
  */   */
 #include <assert.h>  #include <assert.h>
   #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
   #include <string.h>
 #include <time.h>  #include <time.h>
   
 #include "private.h"  #include "private.h"
Line 34  struct actions {
Line 36  struct actions {
   
 /* Per-macro action routines. */  /* Per-macro action routines. */
   
   static  int      post_bl(struct mdoc *);
 static  int      post_sh(struct mdoc *);  static  int      post_sh(struct mdoc *);
 static  int      post_os(struct mdoc *);  static  int      post_os(struct mdoc *);
 static  int      post_dt(struct mdoc *);  static  int      post_dt(struct mdoc *);
Line 56  const struct actions mdoc_actions[MDOC_MAX] = {
Line 59  const struct actions mdoc_actions[MDOC_MAX] = {
         { NULL }, /* Dl */          { NULL }, /* Dl */
         { NULL }, /* Bd */          { NULL }, /* Bd */
         { NULL }, /* Ed */          { NULL }, /* Ed */
         { NULL }, /* Bl */          { post_bl }, /* Bl */
         { NULL }, /* El */          { NULL }, /* El */
         { NULL }, /* It */          { NULL }, /* It */
         { NULL }, /* Ad */          { NULL }, /* Ad */
Line 194  post_sh(struct mdoc *mdoc)
Line 197  post_sh(struct mdoc *mdoc)
         if (xstrlcats(buf, mdoc->last->child, 64)) {          if (xstrlcats(buf, mdoc->last->child, 64)) {
                 if (SEC_CUSTOM != (sec = mdoc_atosec(buf)))                  if (SEC_CUSTOM != (sec = mdoc_atosec(buf)))
                         mdoc->lastnamed = sec;                          mdoc->lastnamed = sec;
                   mdoc->lastsec = sec;
                 return(1);                  return(1);
         }          }
   
Line 216  post_dt(struct mdoc *mdoc)
Line 220  post_dt(struct mdoc *mdoc)
   
         assert(NULL == mdoc->meta.title);          assert(NULL == mdoc->meta.title);
   
           /* LINTED */
         for (i = 0, n = mdoc->last->child; n; n = n->next, i++) {          for (i = 0, n = mdoc->last->child; n; n = n->next, i++) {
                 assert(MDOC_TEXT == n->type);                  assert(MDOC_TEXT == n->type);
                 p = n->data.text.string;                  p = n->data.text.string;
Line 266  post_os(struct mdoc *mdoc)
Line 271  post_os(struct mdoc *mdoc)
         if ( ! xstrlcats(buf, mdoc->last->child, 64))          if ( ! xstrlcats(buf, mdoc->last->child, 64))
                 return(mdoc_err(mdoc, "macro parameters too long"));                  return(mdoc_err(mdoc, "macro parameters too long"));
   
         mdoc->meta.os = xstrdup(buf[0] ? buf : "local");          mdoc->meta.os = xstrdup(buf[0] ? buf : "LOCAL");
         mdoc->lastnamed = SEC_BODY;          mdoc->lastnamed = SEC_BODY;
   
         return(post_prologue(mdoc));          return(post_prologue(mdoc));
   }
   
   
   /*
    * Transform -width MACRO values into real widths.
    */
   static int
   post_bl(struct mdoc *mdoc)
   {
           struct mdoc_block *bl;
           size_t             width;
           int                tok, i;
           char               buf[32];
   
           if (MDOC_BLOCK != mdoc->last->type)
                   return(1);
   
           bl = &mdoc->last->data.block;
   
           for (i = 0; i < (int)bl->argc; i++)
                   if (MDOC_Width == bl->argv[i].arg)
                           break;
   
           if (i == (int)bl->argc)
                   return(1);
   
           assert(1 == bl->argv[i].sz);
           if (MDOC_MAX == (tok = mdoc_find(mdoc, *bl->argv[i].value)))
                   return(1);
   
           if (0 == (width = mdoc_macro2len(tok)))
                   return(mdoc_warn(mdoc, WARN_SYNTAX,
                                           "-%s macro has no length",
                                           mdoc_argnames[MDOC_Width]));
   
           mdoc_msg(mdoc, "re-writing %s argument: %s -> %zun",
                           mdoc_argnames[MDOC_Width],
                           *bl->argv[i].value, width);
   
           /* FIXME: silently truncates. */
           (void)snprintf(buf, sizeof(buf), "%zun", width);
   
           free(*bl->argv[i].value);
           *bl->argv[i].value = strdup(buf);
   
           return(1);
 }  }
   
   

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.22

CVSweb