[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.92 and 1.93

version 1.92, 2010/07/04 22:04:04 version 1.93, 2010/07/18 17:00:26
Line 610  append_delims(struct mdoc *m, int line, int *pos, char
Line 610  append_delims(struct mdoc *m, int line, int *pos, char
                  * knowing which symbols break this behaviour, for                   * knowing which symbols break this behaviour, for
                  * example, `.  ;' shouldn't propogate the double-space.                   * example, `.  ;' shouldn't propogate the double-space.
                  */                   */
                 if (mandoc_eos(p, strlen(p)))                  if (mandoc_eos(p, strlen(p), 0))
                         m->last->flags |= MDOC_EOS;                          m->last->flags |= MDOC_EOS;
         }          }
   
Line 1266  blk_part_imp(MACRO_PROT_ARGS)
Line 1266  blk_part_imp(MACRO_PROT_ARGS)
          */           */
   
         if (n && MDOC_TEXT == n->type && n->string)          if (n && MDOC_TEXT == n->type && n->string)
                 if (mandoc_eos(n->string, strlen(n->string)))                  if (mandoc_eos(n->string, strlen(n->string), 1))
                         n->flags |= MDOC_EOS;                          n->flags |= MDOC_EOS;
   
         /* Up-propogate the end-of-space flag. */          /* Up-propogate the end-of-space flag. */

Legend:
Removed from v.1.92  
changed lines
  Added in v.1.93

CVSweb