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

Diff for /mandoc/Attic/mdoc_action.c between version 1.6 and 1.11

version 1.6, 2009/04/06 08:53:12 version 1.11, 2009/06/12 12:52:51
Line 1 
Line 1 
 /* $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the   * purpose with or without fee is hereby granted, provided that the above
  * above copyright notice and this permission notice appear in all   * copyright notice and this permission notice appear in all copies.
  * copies.  
  *   *
  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL   * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED   * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE   * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL   * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR   * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  * PERFORMANCE OF THIS SOFTWARE.  
  */   */
 #include <sys/utsname.h>  #include <sys/utsname.h>
   
Line 58  static int   post_bl_tagwidth(POST_ARGS);
Line 56  static int   post_bl_tagwidth(POST_ARGS);
 static  int       post_dd(POST_ARGS);  static  int       post_dd(POST_ARGS);
 static  int       post_display(POST_ARGS);  static  int       post_display(POST_ARGS);
 static  int       post_dt(POST_ARGS);  static  int       post_dt(POST_ARGS);
   static  int       post_lk(POST_ARGS);
 static  int       post_nm(POST_ARGS);  static  int       post_nm(POST_ARGS);
 static  int       post_os(POST_ARGS);  static  int       post_os(POST_ARGS);
 static  int       post_prol(POST_ARGS);  static  int       post_prol(POST_ARGS);
Line 181  const struct actions mdoc_actions[MDOC_MAX] = {
Line 180  const struct actions mdoc_actions[MDOC_MAX] = {
         { NULL, NULL }, /* Lb */          { NULL, NULL }, /* Lb */
         { NULL, NULL }, /* Ap */          { NULL, NULL }, /* Ap */
         { NULL, NULL }, /* Lp */          { NULL, NULL }, /* Lp */
         { NULL, NULL }, /* Lk */          { NULL, post_lk }, /* Lk */
         { NULL, NULL }, /* Mt */          { NULL, NULL }, /* Mt */
         { NULL, NULL }, /* Brq */          { NULL, NULL }, /* Brq */
         { NULL, NULL }, /* Bro */          { NULL, NULL }, /* Bro */
Line 344  post_nm(POST_ARGS)
Line 343  post_nm(POST_ARGS)
         if (m->meta.name)          if (m->meta.name)
                 return(1);                  return(1);
   
         printf("bar\n");  
   
         buf[0] = 0;          buf[0] = 0;
         if ( ! concat(m, m->last->child, buf, sizeof(buf)))          if ( ! concat(m, m->last->child, buf, sizeof(buf)))
                 return(0);                  return(0);
   
         printf("foo\n");  
   
         if (NULL == (m->meta.name = strdup(buf)))          if (NULL == (m->meta.name = strdup(buf)))
                 return(verr(m, EMALLOC));                  return(verr(m, EMALLOC));
   
         printf("baz\n");  
   
         return(1);          return(1);
 }  }
   
Line 545  post_bl_tagwidth(struct mdoc *m)
Line 538  post_bl_tagwidth(struct mdoc *m)
          * width if a macro.           * width if a macro.
          */           */
   
         if ((n = m->last->body->child)) {          n = m->last->body->child;
           if (n) {
                 assert(MDOC_BLOCK == n->type);                  assert(MDOC_BLOCK == n->type);
                 assert(MDOC_It == n->tok);                  assert(MDOC_It == n->tok);
                 n = n->head->child;                  n = n->head->child;
Line 672  post_bl(POST_ARGS)
Line 666  post_bl(POST_ARGS)
                 if ( ! post_bl_width(m))                  if ( ! post_bl_width(m))
                         return(0);                          return(0);
   
           return(1);
   }
   
   
   static int
   post_lk(POST_ARGS)
   {
           struct mdoc_node *n;
   
           if (m->last->child)
                   return(1);
   
           n = m->last;
           m->next = MDOC_NEXT_CHILD;
           /* FIXME: this isn't documented anywhere! */
           if ( ! mdoc_word_alloc(m, m->last->line,
                                   m->last->pos, "~"))
                   return(0);
   
           m->last = n;
           m->next = MDOC_NEXT_SIBLING;
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.11

CVSweb