Remove useless ; after DO_SLIST macro

This commit is contained in:
Julien Danjou 2008-03-13 15:06:14 +01:00
parent 0a980095b3
commit 6b4c9fed83
10 changed files with 12 additions and 12 deletions

View File

@ -69,7 +69,7 @@ item_delete(item_t **item)
p_delete(item); p_delete(item);
} }
DO_SLIST(item_t, item, item_delete); DO_SLIST(item_t, item, item_delete)
/** awesome-run global configuration structure */ /** awesome-run global configuration structure */
typedef struct typedef struct

View File

@ -55,7 +55,7 @@ Uicb uicb_client_togglefloating;
Uicb uicb_client_togglescratch; Uicb uicb_client_togglescratch;
Uicb uicb_client_setscratch; Uicb uicb_client_setscratch;
DO_SLIST(Client, client, p_delete); DO_SLIST(Client, client, p_delete)
#endif #endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80

View File

@ -49,7 +49,7 @@ struct Area
Area *prev, *next; Area *prev, *next;
}; };
DO_SLIST(Area, area, p_delete); DO_SLIST(Area, area, p_delete)
#define AREA_LEFT(a) ((a).x) #define AREA_LEFT(a) ((a).x)
#define AREA_TOP(a) ((a).y) #define AREA_TOP(a) ((a).y)

View File

@ -24,8 +24,8 @@
#include "structs.h" #include "structs.h"
DO_SLIST(Key, key, p_delete); DO_SLIST(Key, key, p_delete)
DO_SLIST(Button, button, p_delete); DO_SLIST(Button, button, p_delete)
void config_parse(const char *); void config_parse(const char *);

View File

@ -31,7 +31,7 @@ Client * focus_get_current_client(int);
Uicb uicb_focus_history; Uicb uicb_focus_history;
Uicb uicb_focus_client_byname; Uicb uicb_focus_client_byname;
DO_SLIST(client_node_t, client_node, p_delete); DO_SLIST(client_node_t, client_node, p_delete)
#endif #endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80

View File

@ -38,7 +38,7 @@ struct Layout
Layout *prev, *next; Layout *prev, *next;
}; };
DO_SLIST(Layout, layout, p_delete); DO_SLIST(Layout, layout, p_delete)
int layout_refresh(void); int layout_refresh(void);
Layout * layout_get_current(int); Layout * layout_get_current(int);

View File

@ -31,7 +31,7 @@ Bool tag_match_rule(Tag *, Rule *);
Fuzzy rules_get_fuzzy_from_str(const char *); Fuzzy rules_get_fuzzy_from_str(const char *);
Rule * rule_matching_client(Client *); Rule * rule_matching_client(Client *);
DO_SLIST(Rule, rule, p_delete); DO_SLIST(Rule, rule, p_delete)
#endif #endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80

View File

@ -32,7 +32,7 @@ Position statusbar_get_position_from_str(const char *);
Uicb uicb_statusbar_toggle; Uicb uicb_statusbar_toggle;
DO_SLIST(Statusbar, statusbar, p_delete); DO_SLIST(Statusbar, statusbar, p_delete)
#endif #endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80

4
tag.h
View File

@ -48,8 +48,8 @@ Uicb uicb_tag_viewnext;
Uicb uicb_tag_viewprev; Uicb uicb_tag_viewprev;
Uicb uicb_tag_create; Uicb uicb_tag_create;
DO_SLIST(Tag, tag, p_delete); DO_SLIST(Tag, tag, p_delete)
DO_SLIST(tag_client_node_t, tag_client_node, p_delete); DO_SLIST(tag_client_node_t, tag_client_node, p_delete)
#endif #endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80

View File

@ -50,7 +50,7 @@ WidgetConstructor tasklist_new;
Uicb uicb_widget_tell; Uicb uicb_widget_tell;
DO_SLIST(Widget, widget, p_delete); DO_SLIST(Widget, widget, p_delete)
#endif #endif