The Vedic Extensions Unicode checks are out of order.
Remove unused "last" variable from private_fl_utf_file_write_until().
Add missing "return" keyword in Featureless Make.
return F_true;
}
- // Vedic Extensions: U+1CD4 to U+1CD2.
- if (sequence >= 0xe1b39400 && sequence <= 0xe1b39200) {
+ // Vedic Extensions: U+1CD2 to U+1CD4.
+ if (sequence >= 0xe1b39200 && sequence <= 0xe1b39400) {
return F_true;
}
return F_true;
}
- // Vedic Extensions: U+1DC0 to U+1CE8.
- if (sequence >= 0xe1b78000 && sequence <= 0xe1b3a800) {
+ // Vedic Extensions: U+1CE8 to U+1DC0.
+ if (sequence >= 0xe1b3a800 && sequence <= 0xe1b78000) {
return F_true;
}
write_size = write_max;
}
- f_array_length_t last = 0;
f_array_length_t used = 0;
ssize_t size_write = 0;
}
*written += i;
- last += used;
if (*written + write_size > write_max) {
write_size = write_max - *written;
void fake_build_skeleton(fake_data_t * const data, fake_build_data_t * const data_build, const mode_t mode, const f_string_static_t file_stage, f_status_t * const status) {
if (*status == F_child) return;
- if (F_status_is_error(*status) || f_file_exists(file_stage, F_true) == F_true);
+ if (F_status_is_error(*status) || f_file_exists(file_stage, F_true) == F_true) return;
f_string_static_t path_headers = f_string_static_t_initialize;
path_headers.used = data->path_build_includes.used + data_build->setting.path_headers.used;