mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26: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:
@@ -1201,7 +1201,7 @@ static void sign_define_cmd(char *sign_name, char *cmdline)
|
||||
int failed = false;
|
||||
|
||||
// set values for a defined sign.
|
||||
for (;;) {
|
||||
while (true) {
|
||||
char *arg = skipwhite(p);
|
||||
if (*arg == NUL) {
|
||||
break;
|
||||
|
Reference in New Issue
Block a user