]> git.cameronkatri.com Git - mandoc.git/blobdiff - chars.in
Do not cast void pointers to pointers requiring alignment.
[mandoc.git] / chars.in
index 4d56a2e7d64857ac8d1cf40af0db41979735d1f8..a4c45b3c43eba89f0420d529f0a808b431675753 100644 (file)
--- a/chars.in
+++ b/chars.in
@@ -1,6 +1,6 @@
-/*     $Id: chars.in,v 1.40 2011/07/22 14:15:15 kristaps Exp $ */
+/*     $Id: chars.in,v 1.42 2011/10/02 10:02:26 kristaps Exp $ */
 /*
- * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
+ * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -33,15 +33,15 @@ static const char ascii_nbrsp[2] = { ASCII_NBRSP, '\0' };
 CHAR_TBL_START
 
 /* Spacing. */
-CHAR("c",                      "",             8203)
+CHAR("c",                      "",             0)
 CHAR("0",                      " ",            8194)
 CHAR(" ",                      ascii_nbrsp,    160)
 CHAR("~",                      ascii_nbrsp,    160)
-CHAR("%",                      "",             8203)
-CHAR("&",                      "",             8203)
-CHAR("^",                      "",             8203)
-CHAR("|",                      "",             8203)
-CHAR("}",                      "",             8203)
+CHAR("%",                      "",             0)
+CHAR("&",                      "",             0)
+CHAR("^",                      "",             0)
+CHAR("|",                      "",             0)
+CHAR("}",                      "",             0)
 
 /* Accents. */
 CHAR("a\"",                    "\"",           779)