diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-08-10 20:05:16 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-08-10 20:05:16 +0200 |
commit | 9bad3f44dbf88104a1ecc61d40dca17f15a209d6 (patch) | |
tree | 7f23f022fb9de453c22730f2315160728fc9362c /src/plugins/fset | |
parent | c58716809cde8697469f7a88f1b8d6a01bd62d13 (diff) | |
download | weechat-9bad3f44dbf88104a1ecc61d40dca17f15a209d6.zip |
core: remove value for first #define in headers, add "PLUGIN" in plugin headers
Diffstat (limited to 'src/plugins/fset')
-rw-r--r-- | src/plugins/fset/fset-bar-item.h | 6 | ||||
-rw-r--r-- | src/plugins/fset/fset-buffer.h | 6 | ||||
-rw-r--r-- | src/plugins/fset/fset-command.h | 6 | ||||
-rw-r--r-- | src/plugins/fset/fset-completion.h | 6 | ||||
-rw-r--r-- | src/plugins/fset/fset-config.h | 6 | ||||
-rw-r--r-- | src/plugins/fset/fset-info.h | 6 | ||||
-rw-r--r-- | src/plugins/fset/fset-mouse.h | 6 | ||||
-rw-r--r-- | src/plugins/fset/fset-option.h | 6 | ||||
-rw-r--r-- | src/plugins/fset/fset.h | 6 |
9 files changed, 27 insertions, 27 deletions
diff --git a/src/plugins/fset/fset-bar-item.h b/src/plugins/fset/fset-bar-item.h index b79ea50c6..c7c9c4e19 100644 --- a/src/plugins/fset/fset-bar-item.h +++ b/src/plugins/fset/fset-bar-item.h @@ -17,8 +17,8 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_FSET_BAR_ITEM_H -#define WEECHAT_FSET_BAR_ITEM_H 1 +#ifndef WEECHAT_PLUGIN_FSET_BAR_ITEM_H +#define WEECHAT_PLUGIN_FSET_BAR_ITEM_H #define FSET_BAR_ITEM_NAME "fset" @@ -26,4 +26,4 @@ extern void fset_bar_item_update (); extern int fset_bar_item_init (); extern void fset_bar_item_end (); -#endif /* WEECHAT_FSET_BAR_ITEM_H */ +#endif /* WEECHAT_PLUGIN_FSET_BAR_ITEM_H */ diff --git a/src/plugins/fset/fset-buffer.h b/src/plugins/fset/fset-buffer.h index 1609275cf..4acbe7d5f 100644 --- a/src/plugins/fset/fset-buffer.h +++ b/src/plugins/fset/fset-buffer.h @@ -17,8 +17,8 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_FSET_BUFFER_H -#define WEECHAT_FSET_BUFFER_H 1 +#ifndef WEECHAT_PLUGIN_FSET_BUFFER_H +#define WEECHAT_PLUGIN_FSET_BUFFER_H #define FSET_BUFFER_NAME "fset" @@ -43,4 +43,4 @@ extern void fset_buffer_open (); extern int fset_buffer_init (); extern void fset_buffer_end (); -#endif /* WEECHAT_FSET_BUFFER_H */ +#endif /* WEECHAT_PLUGIN_FSET_BUFFER_H */ diff --git a/src/plugins/fset/fset-command.h b/src/plugins/fset/fset-command.h index 47053fc68..93b1e1e8a 100644 --- a/src/plugins/fset/fset-command.h +++ b/src/plugins/fset/fset-command.h @@ -17,9 +17,9 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_FSET_COMMAND_H -#define WEECHAT_FSET_COMMAND_H 1 +#ifndef WEECHAT_PLUGIN_FSET_COMMAND_H +#define WEECHAT_PLUGIN_FSET_COMMAND_H extern void fset_command_init (); -#endif /* WEECHAT_FSET_COMMAND_H */ +#endif /* WEECHAT_PLUGIN_FSET_COMMAND_H */ diff --git a/src/plugins/fset/fset-completion.h b/src/plugins/fset/fset-completion.h index 0e5036a1a..1154f7930 100644 --- a/src/plugins/fset/fset-completion.h +++ b/src/plugins/fset/fset-completion.h @@ -17,9 +17,9 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_FSET_COMPLETION_H -#define WEECHAT_FSET_COMPLETION_H 1 +#ifndef WEECHAT_PLUGIN_FSET_COMPLETION_H +#define WEECHAT_PLUGIN_FSET_COMPLETION_H extern void fset_completion_init (); -#endif /* WEECHAT_FSET_COMPLETION_H */ +#endif /* WEECHAT_PLUGIN_FSET_COMPLETION_H */ diff --git a/src/plugins/fset/fset-config.h b/src/plugins/fset/fset-config.h index 2d099199b..7f396e69f 100644 --- a/src/plugins/fset/fset-config.h +++ b/src/plugins/fset/fset-config.h @@ -17,8 +17,8 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_FSET_CONFIG_H -#define WEECHAT_FSET_CONFIG_H 1 +#ifndef WEECHAT_PLUGIN_FSET_CONFIG_H +#define WEECHAT_PLUGIN_FSET_CONFIG_H #define FSET_CONFIG_NAME "fset" @@ -88,4 +88,4 @@ extern int fset_config_read (); extern int fset_config_write (); extern void fset_config_free (); -#endif /* WEECHAT_FSET_CONFIG_H */ +#endif /* WEECHAT_PLUGIN_FSET_CONFIG_H */ diff --git a/src/plugins/fset/fset-info.h b/src/plugins/fset/fset-info.h index 6a381acce..c0311fd3c 100644 --- a/src/plugins/fset/fset-info.h +++ b/src/plugins/fset/fset-info.h @@ -17,9 +17,9 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_FSET_INFO_H -#define WEECHAT_FSET_INFO_H 1 +#ifndef WEECHAT_PLUGIN_FSET_INFO_H +#define WEECHAT_PLUGIN_FSET_INFO_H extern void fset_info_init (); -#endif /* WEECHAT_FSET_INFO_H */ +#endif /* WEECHAT_PLUGIN_FSET_INFO_H */ diff --git a/src/plugins/fset/fset-mouse.h b/src/plugins/fset/fset-mouse.h index d7a8e5e42..129cb4b9d 100644 --- a/src/plugins/fset/fset-mouse.h +++ b/src/plugins/fset/fset-mouse.h @@ -17,12 +17,12 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_FSET_MOUSE_H -#define WEECHAT_FSET_MOUSE_H 1 +#ifndef WEECHAT_PLUGIN_FSET_MOUSE_H +#define WEECHAT_PLUGIN_FSET_MOUSE_H #define FSET_MOUSE_HSIGNAL "fset_mouse" extern int fset_mouse_init (); extern void fset_mouse_end (); -#endif /* WEECHAT_FSET_MOUSE_H */ +#endif /* WEECHAT_PLUGIN_FSET_MOUSE_H */ diff --git a/src/plugins/fset/fset-option.h b/src/plugins/fset/fset-option.h index 93159ac9a..d8418f577 100644 --- a/src/plugins/fset/fset-option.h +++ b/src/plugins/fset/fset-option.h @@ -17,8 +17,8 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_FSET_OPTION_H -#define WEECHAT_FSET_OPTION_H 1 +#ifndef WEECHAT_PLUGIN_FSET_OPTION_H +#define WEECHAT_PLUGIN_FSET_OPTION_H #define FSET_OPTION_VALUE_NULL "null" @@ -129,4 +129,4 @@ extern void fset_option_print_log (); extern int fset_option_init (); extern void fset_option_end (); -#endif /* WEECHAT_FSET_OPTION_H */ +#endif /* WEECHAT_PLUGIN_FSET_OPTION_H */ diff --git a/src/plugins/fset/fset.h b/src/plugins/fset/fset.h index 10627b019..2603507b4 100644 --- a/src/plugins/fset/fset.h +++ b/src/plugins/fset/fset.h @@ -17,8 +17,8 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_FSET_H -#define WEECHAT_FSET_H 1 +#ifndef WEECHAT_PLUGIN_FSET_H +#define WEECHAT_PLUGIN_FSET_H #define weechat_plugin weechat_fset_plugin #define FSET_PLUGIN_NAME "fset" @@ -34,4 +34,4 @@ extern struct t_hdata *fset_hdata_fset_option; extern void fset_add_bar (); -#endif /* WEECHAT_FSET_H */ +#endif /* WEECHAT_PLUGIN_FSET_H */ |