=================================================================== RCS file: /cvs/mandoc/term.c,v retrieving revision 1.252 retrieving revision 1.253 diff -u -p -r1.252 -r1.253 --- mandoc/term.c 2015/10/06 18:32:20 1.252 +++ mandoc/term.c 2015/10/12 00:08:16 1.253 @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.252 2015/10/06 18:32:20 schwarze Exp $ */ +/* $Id: term.c,v 1.253 2015/10/12 00:08:16 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2015 Ingo Schwarze @@ -474,7 +474,6 @@ term_word(struct termp *p, const char *word) term_fontrepl(p, TERMFONT_BI); continue; case ESCAPE_FONT: - /* FALLTHROUGH */ case ESCAPE_FONTROMAN: term_fontrepl(p, TERMFONT_NONE); continue; @@ -771,8 +770,6 @@ term_strlen(const struct termp *p, const char *cp) case ASCII_HYPH: sz += cond_width(p, '-', &skip); cp++; - /* FALLTHROUGH */ - case ASCII_BREAK: break; default: break; @@ -811,7 +808,6 @@ term_vspan(const struct termp *p, const struct roffsu r = su->scale / 12.0; break; case SCALE_EN: - /* FALLTHROUGH */ case SCALE_EM: r = su->scale * 0.6; break;