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

Diff for /mandoc/Attic/chars.in between version 1.39 and 1.45

version 1.39, 2011/05/24 21:40:14 version 1.45, 2014/03/05 23:14:46
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2014 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 27 
Line 28 
  * XXX - update LINES_MAX if adding more!   * XXX - update LINES_MAX if adding more!
  */   */
   
 /* Non-breaking, non-collapsing space uses unit separator. */  /* Special break control characters. */
 static const char ascii_nbrsp[2] = { ASCII_NBRSP, '\0' };  static const char ascii_nbrsp[2] = { ASCII_NBRSP, '\0' };
   static const char ascii_break[2] = { ASCII_BREAK, '\0' };
   
 CHAR_TBL_START  CHAR_TBL_START
   
 /* Spacing. */  /* Spacing. */
 CHAR("c",                       "",             8203)  
 CHAR("0",                       " ",            8194)  
 CHAR(" ",                       ascii_nbrsp,    160)  CHAR(" ",                       ascii_nbrsp,    160)
 CHAR("~",                       ascii_nbrsp,    160)  CHAR("~",                       ascii_nbrsp,    160)
 CHAR("%",                       "",             8203)  CHAR("0",                       " ",            8194)
 CHAR("&",                       "",             8203)  CHAR("|",                       "",             0)
 CHAR("^",                       "",             8203)  CHAR("^",                       "",             0)
 CHAR("|",                       "",             8203)  CHAR("&",                       "",             0)
 CHAR("}",                       "",             8203)  CHAR("%",                       "",             0)
   CHAR(":",                       ascii_break,    0)
   /* XXX The following three do not really belong into this file. */
   CHAR("t",                       "",             0)
   CHAR("c",                       "",             0)
   CHAR("}",                       "",             0)
   
 /* Accents. */  /* Accents. */
 CHAR("a\"",                     "\"",           779)  CHAR("a\"",                     "\"",           733)
 CHAR("a-",                      "-",            175)  CHAR("a-",                      "-",            175)
 CHAR("a.",                      ".",            729)  CHAR("a.",                      ".",            729)
 CHAR("a^",                      "^",            770)  CHAR("a^",                      "^",            94)
 CHAR("\'",                      "\'",           769)  CHAR("\'",                      "\'",           180)
 CHAR("aa",                      "\'",           769)  CHAR("aa",                      "\'",           180)
 CHAR("ga",                      "`",            768)  CHAR("ga",                      "`",            96)
 CHAR("`",                       "`",            768)  CHAR("`",                       "`",            96)
 CHAR("ab",                      "`",            774)  CHAR("ab",                      "`",            728)
 CHAR("ac",                      ",",            807)  CHAR("ac",                      ",",            184)
 CHAR("ad",                      "\"",           776)  CHAR("ad",                      "\"",           168)
 CHAR("ah",                      "v",            711)  CHAR("ah",                      "v",            711)
 CHAR("ao",                      "o",            730)  CHAR("ao",                      "o",            730)
 CHAR("a~",                      "~",            771)  CHAR("a~",                      "~",            126)
 CHAR("ho",                      ",",            808)  CHAR("ho",                      ",",            731)
 CHAR("ha",                      "^",            94)  CHAR("ha",                      "^",            94)
 CHAR("ti",                      "~",            126)  CHAR("ti",                      "~",            126)
   
Line 312  CHAR("Im",   "I",  8465)
Line 317  CHAR("Im",   "I",  8465)
 CHAR("Re",                      "R",            8476)  CHAR("Re",                      "R",            8476)
 CHAR("pd",                      "a",            8706)  CHAR("pd",                      "a",            8706)
 CHAR("-h",                      "/h",           8463)  CHAR("-h",                      "/h",           8463)
   CHAR("12",                      "1/2",          189)
   CHAR("14",                      "1/4",          188)
   CHAR("34",                      "3/4",          190)
   
 /* Ligatures. */  /* Ligatures. */
 CHAR("ff",                      "ff",           64256)  CHAR("ff",                      "ff",           64256)

Legend:
Removed from v.1.39  
changed lines
  Added in v.1.45

CVSweb