mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 17:06:30 +00:00
refactor: uncrustify
Notable changes: replace all infinite loops to `while(true)` and remove `int` from `unsigned int`.
This commit is contained in:
@@ -950,7 +950,7 @@ int copy_indent(int size, char *src)
|
||||
|
||||
// Add tabs required for indent.
|
||||
if (!curbuf->b_p_et) {
|
||||
for (;;) {
|
||||
while (true) {
|
||||
tab_pad = tabstop_padding(ind_col,
|
||||
curbuf->b_p_ts,
|
||||
curbuf->b_p_vts_array);
|
||||
|
Reference in New Issue
Block a user