=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/roff.c,v retrieving revision 1.149 retrieving revision 1.150 diff -c -r1.149 -r1.150 *** src/usr.bin/mandoc/roff.c 2015/10/06 18:30:44 1.149 --- src/usr.bin/mandoc/roff.c 2015/10/12 00:07:27 1.150 *************** *** 1,4 **** ! /* $OpenBSD: roff.c,v 1.149 2015/10/06 18:30:44 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2010-2015 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: roff.c,v 1.150 2015/10/12 00:07:27 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2010-2015 Ingo Schwarze *************** *** 1035,1041 **** break; /* FALLTHROUGH */ case ROFFT_TAIL: - /* FALLTHROUGH */ case ROFFT_HEAD: n->norm = n->parent->norm; break; --- 1035,1040 ---- *************** *** 1333,1339 **** res = NULL; break; case 'B': - /* FALLTHROUGH */ case 'w': term = cp[1]; /* FALLTHROUGH */ --- 1332,1337 ---- *************** *** 1408,1418 **** } switch (mandoc_escape(&cp, NULL, NULL)) { case ESCAPE_SPECIAL: - /* FALLTHROUGH */ case ESCAPE_UNICODE: - /* FALLTHROUGH */ case ESCAPE_NUMBERED: - /* FALLTHROUGH */ case ESCAPE_OVERSTRIKE: naml++; break; --- 1406,1413 ---- *************** *** 1719,1732 **** switch (r->last->tok) { case ROFF_am: /* ROFF_am1 is remapped to ROFF_am in roff_block(). */ - /* FALLTHROUGH */ case ROFF_ami: - /* FALLTHROUGH */ case ROFF_de: /* ROFF_de1 is remapped to ROFF_de in roff_block(). */ - /* FALLTHROUGH */ case ROFF_dei: - /* FALLTHROUGH */ case ROFF_ig: break; default: --- 1714,1723 ---- *************** *** 1768,1776 **** switch (r->last->tok) { case ROFF_el: - /* FALLTHROUGH */ case ROFF_ie: - /* FALLTHROUGH */ case ROFF_if: break; default: --- 1759,1765 ---- *************** *** 2057,2068 **** scaled = *res * 240 / 2.54; break; case 'v': - /* FALLTHROUGH */ case 'P': scaled = *res * 40; break; case 'm': - /* FALLTHROUGH */ case 'n': scaled = *res * 24; break; --- 2046,2055 ---- *************** *** 2151,2168 **** case '\0': return 0; case 'n': - /* FALLTHROUGH */ case 'o': (*pos)++; return wanttrue; case 'c': - /* FALLTHROUGH */ case 'd': - /* FALLTHROUGH */ case 'e': - /* FALLTHROUGH */ case 't': - /* FALLTHROUGH */ case 'v': (*pos)++; return !wanttrue; --- 2138,2150 ---- *************** *** 2338,2354 **** switch (*res) { case '+': - /* FALLTHROUGH */ case '-': - /* FALLTHROUGH */ case '*': - /* FALLTHROUGH */ case '/': - /* FALLTHROUGH */ case '%': - /* FALLTHROUGH */ case '&': - /* FALLTHROUGH */ case ':': break; case '<': --- 2320,2330 ----