Remove useless ; after DO_SLIST macro
This commit is contained in:
parent
0a980095b3
commit
6b4c9fed83
|
@ -69,7 +69,7 @@ item_delete(item_t **item)
|
|||
p_delete(item);
|
||||
}
|
||||
|
||||
DO_SLIST(item_t, item, item_delete);
|
||||
DO_SLIST(item_t, item, item_delete)
|
||||
|
||||
/** awesome-run global configuration structure */
|
||||
typedef struct
|
||||
|
|
2
client.h
2
client.h
|
@ -55,7 +55,7 @@ Uicb uicb_client_togglefloating;
|
|||
Uicb uicb_client_togglescratch;
|
||||
Uicb uicb_client_setscratch;
|
||||
|
||||
DO_SLIST(Client, client, p_delete);
|
||||
DO_SLIST(Client, client, p_delete)
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
||||
|
|
|
@ -49,7 +49,7 @@ struct Area
|
|||
Area *prev, *next;
|
||||
};
|
||||
|
||||
DO_SLIST(Area, area, p_delete);
|
||||
DO_SLIST(Area, area, p_delete)
|
||||
|
||||
#define AREA_LEFT(a) ((a).x)
|
||||
#define AREA_TOP(a) ((a).y)
|
||||
|
|
4
config.h
4
config.h
|
@ -24,8 +24,8 @@
|
|||
|
||||
#include "structs.h"
|
||||
|
||||
DO_SLIST(Key, key, p_delete);
|
||||
DO_SLIST(Button, button, p_delete);
|
||||
DO_SLIST(Key, key, p_delete)
|
||||
DO_SLIST(Button, button, p_delete)
|
||||
|
||||
void config_parse(const char *);
|
||||
|
||||
|
|
2
focus.h
2
focus.h
|
@ -31,7 +31,7 @@ Client * focus_get_current_client(int);
|
|||
Uicb uicb_focus_history;
|
||||
Uicb uicb_focus_client_byname;
|
||||
|
||||
DO_SLIST(client_node_t, client_node, p_delete);
|
||||
DO_SLIST(client_node_t, client_node, p_delete)
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
||||
|
|
2
layout.h
2
layout.h
|
@ -38,7 +38,7 @@ struct Layout
|
|||
Layout *prev, *next;
|
||||
};
|
||||
|
||||
DO_SLIST(Layout, layout, p_delete);
|
||||
DO_SLIST(Layout, layout, p_delete)
|
||||
|
||||
int layout_refresh(void);
|
||||
Layout * layout_get_current(int);
|
||||
|
|
2
rules.h
2
rules.h
|
@ -31,7 +31,7 @@ Bool tag_match_rule(Tag *, Rule *);
|
|||
Fuzzy rules_get_fuzzy_from_str(const char *);
|
||||
Rule * rule_matching_client(Client *);
|
||||
|
||||
DO_SLIST(Rule, rule, p_delete);
|
||||
DO_SLIST(Rule, rule, p_delete)
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
||||
|
|
|
@ -32,7 +32,7 @@ Position statusbar_get_position_from_str(const char *);
|
|||
|
||||
Uicb uicb_statusbar_toggle;
|
||||
|
||||
DO_SLIST(Statusbar, statusbar, p_delete);
|
||||
DO_SLIST(Statusbar, statusbar, p_delete)
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
||||
|
|
4
tag.h
4
tag.h
|
@ -48,8 +48,8 @@ Uicb uicb_tag_viewnext;
|
|||
Uicb uicb_tag_viewprev;
|
||||
Uicb uicb_tag_create;
|
||||
|
||||
DO_SLIST(Tag, tag, p_delete);
|
||||
DO_SLIST(tag_client_node_t, tag_client_node, p_delete);
|
||||
DO_SLIST(Tag, tag, p_delete)
|
||||
DO_SLIST(tag_client_node_t, tag_client_node, p_delete)
|
||||
|
||||
#endif
|
||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
||||
|
|
Loading…
Reference in New Issue