diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2017-07-02 21:03:29 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2017-07-02 21:03:29 +0000 |
commit | f8533bb42247761b6b28bdff208cf03289d2fc75 (patch) | |
tree | 1020437768c3029c4fc898c0b242784c1a4d3c71 /WWW/Library/Implementation/SGML.c | |
parent | 5600928a5398f5f67b7e0915021dddf3e56acc74 (diff) | |
download | lynx-snapshots-f8533bb42247761b6b28bdff208cf03289d2fc75.tar.gz |
snapshot of project "lynx", label v2-8-9dev_14e
Diffstat (limited to 'WWW/Library/Implementation/SGML.c')
-rw-r--r-- | WWW/Library/Implementation/SGML.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/SGML.c b/WWW/Library/Implementation/SGML.c index 138ce334..3087f0b7 100644 --- a/WWW/Library/Implementation/SGML.c +++ b/WWW/Library/Implementation/SGML.c @@ -1,5 +1,5 @@ /* - * $LynxId: SGML.c,v 1.160 2017/01/01 00:56:18 Takeshi.Hataguchi Exp $ + * $LynxId: SGML.c,v 1.161 2017/07/02 19:45:00 tom Exp $ * * General SGML Parser code SGML.c * ======================== @@ -1895,7 +1895,7 @@ static void SGML_character(HTStream *me, int c_in) if (!(c == '>' && me->slashedtag && TOASCII(clong) < 127)) { me->state = S_text; } - /* fall through in any case! */ + /* FALLTHRU */ case S_text: if (IS_CJK_TTY && ((TOASCII(c) & 0200) != 0) #ifdef EXP_JAPANESEUTF8_SUPPORT @@ -3567,7 +3567,7 @@ static void SGML_character(HTStream *me, int c_in) PSRCSTART(attrval); #endif me->state = S_value; - /* no break! fall through to S_value and process current `c` */ + /* FALLTHRU */ case S_value: if (WHITE(c) || (c == '>')) { /* End of word */ |