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

Diff for /mandoc/roff_term.c between version 1.13 and 1.15

version 1.13, 2017/06/14 22:51:25 version 1.15, 2018/08/10 20:40:45
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2010, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010,2014,2015,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * 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 19 
Line 19 
 #include <assert.h>  #include <assert.h>
 #include <stddef.h>  #include <stddef.h>
   
   #include "mandoc.h"
 #include "roff.h"  #include "roff.h"
 #include "out.h"  #include "out.h"
 #include "term.h"  #include "term.h"
Line 110  roff_term_pre_ce(ROFF_TERM_ARGS)
Line 111  roff_term_pre_ce(ROFF_TERM_ARGS)
 static void  static void
 roff_term_pre_ft(ROFF_TERM_ARGS)  roff_term_pre_ft(ROFF_TERM_ARGS)
 {  {
         switch (*n->child->string) {          const char      *cp;
   
           if (*(cp = n->child->string) == 'C')
                   cp++;
   
           switch (*cp) {
         case '4':          case '4':
         case '3':          case '3':
         case 'B':          case 'B':

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.15

CVSweb