=================================================================== RCS file: /cvs/mandoc/Attic/ascii.c,v retrieving revision 1.3 retrieving revision 1.5 diff -u -p -r1.3 -r1.5 --- mandoc/Attic/ascii.c 2009/03/20 15:14:01 1.3 +++ mandoc/Attic/ascii.c 2009/04/05 16:34:22 1.5 @@ -1,4 +1,4 @@ -/* $Id: ascii.c,v 1.3 2009/03/20 15:14:01 kristaps Exp $ */ +/* $Id: ascii.c,v 1.5 2009/04/05 16:34:22 kristaps Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons * @@ -26,12 +26,6 @@ #define ASCII_PRINT_HI 126 #define ASCII_PRINT_LO 32 -/* - * Lookup and hashing routines for constructing the ASCII symbol table, - * which should contain a significant portion of mdoc(7)'s special - * symbols. - */ - struct line { const char *code; const char *out; @@ -92,7 +86,6 @@ term_ascii2htab(void) if (NULL == (tab = malloc(sizeof(struct asciitab)))) err(1, "malloc"); - assert(0 == sizeof(lines) % sizeof(struct line)); len = sizeof(lines) / sizeof(struct line); if (NULL == (p = calloc((size_t)len, sizeof(struct linep))))