vt: use break, not continue

This commit is contained in:
Daniel Eklöf 2019-12-20 22:13:23 +01:00
parent ee8a9674c4
commit 914b96cc9a
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

34
vt.c
View file

@ -1100,24 +1100,24 @@ vt_from_slave(struct terminal *term, const uint8_t *data, size_t len)
;
for (size_t i = 0; i < len; i++) {
switch (current_state) {
case STATE_GROUND: current_state = state_ground_switch(term, data[i]); continue;
case STATE_ESCAPE: current_state = state_escape_switch(term, data[i]); continue;
case STATE_ESCAPE_INTERMEDIATE: current_state = state_escape_intermediate_switch(term, data[i]); continue;
case STATE_CSI_ENTRY: current_state = state_csi_entry_switch(term, data[i]); continue;
case STATE_CSI_PARAM: current_state = state_csi_param_switch(term, data[i]); continue;
case STATE_CSI_INTERMEDIATE: current_state = state_csi_intermediate_switch(term, data[i]); continue;
case STATE_CSI_IGNORE: current_state = state_csi_ignore_switch(term, data[i]); continue;
case STATE_OSC_STRING: current_state = state_osc_string_switch(term, data[i]); continue;
case STATE_DCS_ENTRY: current_state = state_dcs_entry_switch(term, data[i]); continue;
case STATE_DCS_PARAM: current_state = state_dcs_param_switch(term, data[i]); continue;
case STATE_DCS_INTERMEDIATE: current_state = state_dcs_intermediate_switch(term, data[i]); continue;
case STATE_DCS_IGNORE: current_state = state_dcs_ignore_switch(term, data[i]); continue;
case STATE_DCS_PASSTHROUGH: current_state = state_dcs_passthrough_switch(term, data[i]); continue;
case STATE_SOS_PM_APC_STRING: current_state = state_sos_pm_apc_string_switch(term, data[i]); continue;
case STATE_GROUND: current_state = state_ground_switch(term, data[i]); break;
case STATE_ESCAPE: current_state = state_escape_switch(term, data[i]); break;
case STATE_ESCAPE_INTERMEDIATE: current_state = state_escape_intermediate_switch(term, data[i]); break;
case STATE_CSI_ENTRY: current_state = state_csi_entry_switch(term, data[i]); break;
case STATE_CSI_PARAM: current_state = state_csi_param_switch(term, data[i]); break;
case STATE_CSI_INTERMEDIATE: current_state = state_csi_intermediate_switch(term, data[i]); break;
case STATE_CSI_IGNORE: current_state = state_csi_ignore_switch(term, data[i]); break;
case STATE_OSC_STRING: current_state = state_osc_string_switch(term, data[i]); break;
case STATE_DCS_ENTRY: current_state = state_dcs_entry_switch(term, data[i]); break;
case STATE_DCS_PARAM: current_state = state_dcs_param_switch(term, data[i]); break;
case STATE_DCS_INTERMEDIATE: current_state = state_dcs_intermediate_switch(term, data[i]); break;
case STATE_DCS_IGNORE: current_state = state_dcs_ignore_switch(term, data[i]); break;
case STATE_DCS_PASSTHROUGH: current_state = state_dcs_passthrough_switch(term, data[i]); break;
case STATE_SOS_PM_APC_STRING: current_state = state_sos_pm_apc_string_switch(term, data[i]); break;
case STATE_UTF8_COLLECT_1: current_state = state_utf8_collect_1_switch(term, data[i]); continue;
case STATE_UTF8_COLLECT_2: current_state = state_utf8_collect_2_switch(term, data[i]); continue;
case STATE_UTF8_COLLECT_3: current_state = state_utf8_collect_3_switch(term, data[i]); continue;
case STATE_UTF8_COLLECT_1: current_state = state_utf8_collect_1_switch(term, data[i]); break;
case STATE_UTF8_COLLECT_2: current_state = state_utf8_collect_2_switch(term, data[i]); break;
case STATE_UTF8_COLLECT_3: current_state = state_utf8_collect_3_switch(term, data[i]); break;
}
}