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

Diff for /mandoc/Attic/chars.in between version 1.43 and 1.44

version 1.43, 2013/06/20 22:39:30 version 1.44, 2014/01/22 20:58:39
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) 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",                       "",             0)  
 CHAR("0",                       " ",            8194)  
 CHAR(" ",                       ascii_nbrsp,    160)  CHAR(" ",                       ascii_nbrsp,    160)
 CHAR("~",                       ascii_nbrsp,    160)  CHAR("~",                       ascii_nbrsp,    160)
 CHAR("%",                       "",             0)  CHAR("0",                       " ",            8194)
 CHAR("&",                       "",             0)  
 CHAR("^",                       "",             0)  
 CHAR("|",                       "",             0)  CHAR("|",                       "",             0)
 CHAR("}",                       "",             0)  CHAR("^",                       "",             0)
   CHAR("&",                       "",             0)
   CHAR("%",                       "",             0)
   CHAR(":",                       ascii_break,    0)
   /* XXX The following three do not really belong into this file. */
 CHAR("t",                       "",             0)  CHAR("t",                       "",             0)
   CHAR("c",                       "",             0)
   CHAR("}",                       "",             0)
   
 /* Accents. */  /* Accents. */
 CHAR("a\"",                     "\"",           779)  CHAR("a\"",                     "\"",           779)

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44

CVSweb