mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 02:16:31 +00:00
refactor: uncrustify
Notable changes: replace all infinite loops to `while(true)` and remove `int` from `unsigned int`.
This commit is contained in:
@@ -2185,7 +2185,7 @@ char *getnextac(int c, void *cookie, int indent, bool do_concat)
|
||||
}
|
||||
|
||||
// repeat until we find an autocommand to execute
|
||||
for (;;) {
|
||||
while (true) {
|
||||
// skip removed commands
|
||||
while (acp->nextcmd != NULL
|
||||
&& aucmd_exec_is_deleted(acp->nextcmd->exec)) {
|
||||
|
Reference in New Issue
Block a user