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

Diff for /mandoc/chars.c between version 1.78 and 1.81

version 1.78, 2018/12/15 19:30:26 version 1.81, 2022/06/26 20:33:43
Line 1 
Line 1 
 /*      $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011,2014,2015,2017,2018 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2011, 2014, 2015, 2017, 2018, 2020
    *               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 47  static struct ln lines[] = {
Line 48  static struct ln lines[] = {
         /* Spacing. */          /* Spacing. */
         { " ",                  ascii_nbrsp,    0x00a0  },          { " ",                  ascii_nbrsp,    0x00a0  },
         { "~",                  ascii_nbrsp,    0x00a0  },          { "~",                  ascii_nbrsp,    0x00a0  },
         { "0",                  " ",            0x2002  },          { "0",                  ascii_nbrsp,    0x00a0  },
         { ":",                  ascii_break,    0       },          { ":",                  ascii_break,    0       },
   
         /* Lines. */          /* Lines. */
Line 91  static struct ln lines[] = {
Line 92  static struct ln lines[] = {
         { "en",                 "-",            0x2013  },          { "en",                 "-",            0x2013  },
         { "hy",                 "-",            0x2010  },          { "hy",                 "-",            0x2010  },
         { "e",                  "\\",           0x005c  },          { "e",                  "\\",           0x005c  },
         { ".",                  ".",            0x002e  },  
         { "r!",                 "!",            0x00a1  },          { "r!",                 "!",            0x00a1  },
         { "r?",                 "?",            0x00bf  },          { "r?",                 "?",            0x00bf  },
   
Line 364  static struct ln lines[] = {
Line 364  static struct ln lines[] = {
         { "de",                 "<degree>",     0x00b0  },          { "de",                 "<degree>",     0x00b0  },
         { "%0",                 "<permille>",   0x2030  },          { "%0",                 "<permille>",   0x2030  },
         { "fm",                 "\'",           0x2032  },          { "fm",                 "\'",           0x2032  },
         { "sd",                 "''",           0x2033  },          { "sd",                 "\"",           0x2033  },
         { "mc",                 "<micro>",      0x00b5  },          { "mc",                 "<micro>",      0x00b5  },
         { "Of",                 "_\ba",         0x00aa  },          { "Of",                 "_\ba",         0x00aa  },
         { "Om",                 "_\bo",         0x00ba  },          { "Om",                 "_\bo",         0x00ba  },

Legend:
Removed from v.1.78  
changed lines
  Added in v.1.81

CVSweb