mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
vt: use break, not continue
This commit is contained in:
parent
ee8a9674c4
commit
914b96cc9a
1 changed files with 17 additions and 17 deletions
34
vt.c
34
vt.c
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue