From cb58c99d0baf84263ada1870a91a2f65e1f33901 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 14 May 2018 12:31:25 -0700 Subject: [PATCH] A few more fall-through comments. --- src/microcode/syntax.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/microcode/syntax.c b/src/microcode/syntax.c index ed9a9f576..8a885a247 100644 --- a/src/microcode/syntax.c +++ b/src/microcode/syntax.c @@ -507,6 +507,7 @@ DEFINE_PRIMITIVE ("SCAN-LIST-FORWARD", Prim_scan_list_forward, 7, 7, 0) case syntaxcode_charquote: LOSE_IF_RIGHT_END (start); MOVE_RIGHT (start); + /* fall through */ case syntaxcode_word: case syntaxcode_symbol: @@ -976,6 +977,7 @@ DEFINE_PRIMITIVE ("SCAN-SEXPS-FORWARD", Prim_scan_sexps_forward, 7, 7, 0) quoted = true; DONE_IF (true); } + /* fall through */ case syntaxcode_word: case syntaxcode_symbol: -- 2.25.1