Add ForEachMacros to .clang-format

So it doesn't add a linebreak after them.
This commit is contained in:
Tadeo Kondrak 2019-12-30 21:44:23 -07:00
parent eda1fc566d
commit 440adaaaff
No known key found for this signature in database
GPG key ID: D41E092CA43F1D8B
4 changed files with 9 additions and 5 deletions

View file

@ -40,4 +40,10 @@ SpacesInContainerLiterals: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
UseTab: Never
ForEachMacros:
- wl_list_for_each
- wl_list_for_each_safe
- wl_list_for_each_reverse
- wl_list_for_each_reverse_safe
- wl_array_for_each
...

View file

@ -96,8 +96,7 @@ output_frame_notify(struct wl_listener *listener, void *data)
wlr_renderer_clear(renderer, (float[]){0.0f, 1.0f, 0.0f, 1.0f});
struct kiwmi_view *view;
wl_list_for_each_reverse(view, &desktop->views, link)
{
wl_list_for_each_reverse (view, &desktop->views, link) {
if (!view->mapped) {
continue;
}

View file

@ -123,8 +123,7 @@ view_at(
double *sy)
{
struct kiwmi_view *view;
wl_list_for_each(view, &desktop->views, link)
{
wl_list_for_each (view, &desktop->views, link) {
if (surface_at(view, surface, lx, ly, sx, sy)) {
return view;
}

View file

@ -298,7 +298,7 @@ luaK_fini(struct kiwmi_lua *lua)
{
struct lua_callback *lc;
struct lua_callback *tmp;
wl_list_for_each_safe(lc, tmp, &lua->callbacks, link) {
wl_list_for_each_safe (lc, tmp, &lua->callbacks, link) {
wl_list_remove(&lc->listener.link);
wl_list_remove(&lc->link);