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

Diff for /mandoc/tree.c between version 1.86 and 1.87

version 1.86, 2020/02/27 21:43:45 version 1.87, 2020/03/13 15:32:29
Line 1 
Line 1 
 /*      $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>  
  * Copyright (c) 2013-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2013-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>
    * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * 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 above   * purpose with or without fee is hereby granted, provided that the above
Line 14 
Line 14 
  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN   * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
    *
    * Formatting module to let mandoc(1) show
    * a human readable representation of the syntax tree.
  */   */
 #include "config.h"  #include "config.h"
   
Line 305  print_man(const struct roff_node *n, int indent)
Line 308  print_man(const struct roff_node *n, int indent)
                         putchar(')');                          putchar(')');
                 if (n->flags & NODE_EOS)                  if (n->flags & NODE_EOS)
                         putchar('.');                          putchar('.');
                   if (n->flags & NODE_ID) {
                           printf(" ID");
                           if (n->string != NULL)
                                   printf("=%s", n->string);
                   }
                 if (n->flags & NODE_NOFILL)                  if (n->flags & NODE_NOFILL)
                         printf(" NOFILL");                          printf(" NOFILL");
                 putchar('\n');                  putchar('\n');

Legend:
Removed from v.1.86  
changed lines
  Added in v.1.87

CVSweb