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

Diff for /mandoc/chars.c between version 1.69 and 1.70

version 1.69, 2017/02/17 18:28:06 version 1.70, 2017/06/02 12:43:52
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 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2011, 2014, 2015, 2017 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 81  static struct ln lines[] = {
Line 81  static struct ln lines[] = {
         { "sh",                 "#",            0x0023  },          { "sh",                 "#",            0x0023  },
         { "CR",                 "_|",           0x21b5  },          { "CR",                 "_|",           0x21b5  },
         { "OK",                 "\\/",          0x2713  },          { "OK",                 "\\/",          0x2713  },
           { "CL",                 "<club>",       0x2663  },
           { "SP",                 "<spade>",      0x2660  },
           { "HE",                 "<heart>",      0x2665  },
           { "DI",                 "<diamond>",    0x2666  },
   
         /* Legal symbols. */          /* Legal symbols. */
         { "co",                 "(C)",          0x00a9  },          { "co",                 "(C)",          0x00a9  },
Line 161  static struct ln lines[] = {
Line 165  static struct ln lines[] = {
         { "uA",                 "=\b^",         0x21d1  },          { "uA",                 "=\b^",         0x21d1  },
         { "dA",                 "=\bv",         0x21d3  },          { "dA",                 "=\bv",         0x21d3  },
         { "vA",                 "^=v",          0x21d5  },          { "vA",                 "^=v",          0x21d5  },
           { "an",                 "-",            0x23af  },
   
         /* Logic. */          /* Logic. */
         { "AN",                 "^",            0x2227  },          { "AN",                 "^",            0x2227  },
Line 234  static struct ln lines[] = {
Line 239  static struct ln lines[] = {
         { "Ah",                 "N",            0x2135  },          { "Ah",                 "N",            0x2135  },
         { "Im",                 "I",            0x2111  },          { "Im",                 "I",            0x2111  },
         { "Re",                 "R",            0x211c  },          { "Re",                 "R",            0x211c  },
           { "wp",                 "P",            0x2118  },
         { "pd",                 "a",            0x2202  },          { "pd",                 "a",            0x2202  },
         { "-h",                 "/h",           0x210f  },          { "-h",                 "/h",           0x210f  },
           { "hbar",               "/h",           0x210f  },
         { "12",                 "1/2",          0x00bd  },          { "12",                 "1/2",          0x00bd  },
         { "14",                 "1/4",          0x00bc  },          { "14",                 "1/4",          0x00bc  },
         { "34",                 "3/4",          0x00be  },          { "34",                 "3/4",          0x00be  },
           { "18",                 "1/8",          0x215B  },
           { "38",                 "3/8",          0x215C  },
           { "58",                 "5/8",          0x215D  },
           { "78",                 "7/8",          0x215E  },
           { "S1",                 "1",            0x00B9  },
           { "S2",                 "2",            0x00B2  },
           { "S3",                 "3",            0x00B3  },
   
         /* Ligatures. */          /* Ligatures. */
         { "ff",                 "ff",           0xfb00  },          { "ff",                 "ff",           0xfb00  },
Line 354  static struct ln lines[] = {
Line 368  static struct ln lines[] = {
         { "fm",                 "\'",           0x2032  },          { "fm",                 "\'",           0x2032  },
         { "sd",                 "''",           0x2033  },          { "sd",                 "''",           0x2033  },
         { "mc",                 ",\bu",         0x00b5  },          { "mc",                 ",\bu",         0x00b5  },
           { "Of",                 "_\ba",         0x00aa  },
           { "Om",                 "_\bo",         0x00ba  },
   
         /* Greek characters. */          /* Greek characters. */
         { "*A",                 "A",            0x0391  },          { "*A",                 "A",            0x0391  },

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.70

CVSweb