=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/roff.c,v retrieving revision 1.58 retrieving revision 1.59 diff -c -r1.58 -r1.59 *** src/usr.bin/mandoc/roff.c 2013/10/14 01:42:26 1.58 --- src/usr.bin/mandoc/roff.c 2013/10/22 20:37:54 1.59 *************** *** 1,4 **** ! /* $Id: roff.c,v 1.58 2013/10/14 01:42:26 schwarze Exp $ */ /* * Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons * Copyright (c) 2010, 2011, 2012, 2013 Ingo Schwarze --- 1,4 ---- ! /* $Id: roff.c,v 1.59 2013/10/22 20:37:54 schwarze Exp $ */ /* * Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons * Copyright (c) 2010, 2011, 2012, 2013 Ingo Schwarze *************** *** 43,48 **** --- 43,49 ---- ROFF_ds, ROFF_el, ROFF_fam, + ROFF_hw, ROFF_hy, ROFF_ie, ROFF_if, *************** *** 233,238 **** --- 234,240 ---- { "ds", roff_ds, NULL, NULL, 0, NULL }, { "el", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, { "fam", roff_line_ignore, NULL, NULL, 0, NULL }, + { "hw", roff_line_ignore, NULL, NULL, 0, NULL }, { "hy", roff_line_ignore, NULL, NULL, 0, NULL }, { "ie", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, { "if", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL },