diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-10-12 17:23:50 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-10-19 15:20:33 +0200 |
commit | f98b8d2d44d289263b1a3b33b6a7f20644ef671c (patch) | |
tree | b3987d34198b39647c131f876a8070b3782f159b /src/nvim/lib/queue.h | |
parent | 29b718d04c474433977e952ac7f3561041f3bda0 (diff) | |
download | rneovim-f98b8d2d44d289263b1a3b33b6a7f20644ef671c.tar.gz rneovim-f98b8d2d44d289263b1a3b33b6a7f20644ef671c.tar.bz2 rneovim-f98b8d2d44d289263b1a3b33b6a7f20644ef671c.zip |
refactor: enable formatting for files under lib
Diffstat (limited to 'src/nvim/lib/queue.h')
-rw-r--r-- | src/nvim/lib/queue.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/lib/queue.h b/src/nvim/lib/queue.h index bc4e9c4a82..871f49c863 100644 --- a/src/nvim/lib/queue.h +++ b/src/nvim/lib/queue.h @@ -1,5 +1,3 @@ -// uncrustify:off - // Queue implemented by circularly-linked list. // // Adapted from libuv. Simpler and more efficient than klist.h for implementing @@ -43,7 +41,7 @@ typedef struct _queue { while((q) != (h)) { \ QUEUE *next = q->next; \ code \ - (q) = next; \ + (q) = next; \ } |