[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.27 and 1.28

version 1.27, 2009/07/12 20:50:08 version 1.28, 2009/07/15 15:53:57
Line 298  post_lb(POST_ARGS)
Line 298  post_lb(POST_ARGS)
         char            *buf;          char            *buf;
         size_t           sz;          size_t           sz;
   
           /*
            * FIXME: this must be broken apart into a series of TEXT nodes,
            * each containing a single word.
            */
   
         assert(MDOC_TEXT == m->last->child->type);          assert(MDOC_TEXT == m->last->child->type);
         p = mdoc_a2lib(m->last->child->string);          p = mdoc_a2lib(m->last->child->string);
         if (NULL == p) {          if (NULL == p) {
Line 326  post_st(POST_ARGS)
Line 331  post_st(POST_ARGS)
 {  {
         const char      *p;          const char      *p;
   
           /*
            * FIXME: this must be broken apart into a series of TEXT nodes,
            * each containing a single word.
            */
   
         assert(MDOC_TEXT == m->last->child->type);          assert(MDOC_TEXT == m->last->child->type);
         p = mdoc_a2st(m->last->child->string);          p = mdoc_a2st(m->last->child->string);
         assert(p);          assert(p);
Line 342  post_at(POST_ARGS)
Line 352  post_at(POST_ARGS)
 {  {
         struct mdoc_node *n;          struct mdoc_node *n;
         const char       *p;          const char       *p;
   
           /*
            * FIXME: this must be broken apart into a series of TEXT nodes,
            * each containing a single word.
            */
   
         if (m->last->child) {          if (m->last->child) {
                 assert(MDOC_TEXT == m->last->child->type);                  assert(MDOC_TEXT == m->last->child->type);

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28

CVSweb