diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-01-26 18:18:20 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-01-26 18:18:20 +0100 |
commit | 9347bae9623a5aa26436c7a822e9b8c1d39c14f2 (patch) | |
tree | 731205227618ca62574713e157cce38e3e23a90a /doc/fr/weechat_plugin_api.fr.txt | |
parent | 9a821b9d3cd5a9970520a742472547e7bb78ae24 (diff) | |
download | weechat-9347bae9623a5aa26436c7a822e9b8c1d39c14f2.zip |
api: replace type "regex_t *" by "void *" in function string_regcomp (fix ruby compilation with autotools)
Diffstat (limited to 'doc/fr/weechat_plugin_api.fr.txt')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index 187f0fed5..0e953ab9f 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -1105,7 +1105,7 @@ Prototype : [source,C] ---------------------------------------- -int weechat_string_regcomp (regex_t *preg, const char *regex, int default_flags) +int weechat_string_regcomp (void *preg, const char *regex, int default_flags) ---------------------------------------- Paramètres : |