it's FALLTHROUGH, 10x moritz@obsd

This commit is contained in:
tg 2007-06-04 19:25:45 +00:00
parent c55dcc364b
commit 5d6b21fda2
1 changed files with 2 additions and 2 deletions

4
lex.c
View File

@ -2,7 +2,7 @@
#include "sh.h"
__RCSID("$MirOS: src/bin/mksh/lex.c,v 1.32 2007/05/13 19:14:04 tg Exp $");
__RCSID("$MirOS: src/bin/mksh/lex.c,v 1.33 2007/06/04 19:25:45 tg Exp $");
/* Structure to keep track of the lexing state and the various pieces of info
* needed for each particular state. */
@ -220,7 +220,7 @@ yylex(int cf)
case '"':
if ((cf & HEREDOC))
goto heredocquote;
/* FALLTROUGH */
/* FALLTHROUGH */
case '\\':
case '$': case '`':
*wp++ = QCHAR, *wp++ = c;