summaryrefslogtreecommitdiff
path: root/doc/fr/weechat_plugin_api.fr.txt
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2014-01-05 14:37:27 +0100
committerSebastien Helleu <flashcode@flashtux.org>2014-01-05 14:37:27 +0100
commit846dde00aae772c5df89da7534409cab73952650 (patch)
treea73a87d659a61edfa6358e5c23649d28ac9d0756 /doc/fr/weechat_plugin_api.fr.txt
parent7dfaca9ef3caa939e19c310eb5d2ecc67a891689 (diff)
downloadweechat-846dde00aae772c5df89da7534409cab73952650.zip
core: fix crash with hdata_update on shared strings, add hdata type "shared_string" (bug #41104)
Diffstat (limited to 'doc/fr/weechat_plugin_api.fr.txt')
-rw-r--r--doc/fr/weechat_plugin_api.fr.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt
index 27807f4d7..af5af0171 100644
--- a/doc/fr/weechat_plugin_api.fr.txt
+++ b/doc/fr/weechat_plugin_api.fr.txt
@@ -13250,6 +13250,7 @@ Paramètres :
** WEECHAT_HDATA_INTEGER
** WEECHAT_HDATA_LONG
** WEECHAT_HDATA_STRING
+** WEECHAT_HDATA_SHARED_STRING
** WEECHAT_HDATA_POINTER
** WEECHAT_HDATA_TIME
** WEECHAT_HDATA_HASHTABLE
@@ -13500,6 +13501,9 @@ switch (type)
case WEECHAT_HDATA_STRING:
/* ... */
break;
+ case WEECHAT_HDATA_SHARED_STRING:
+ /* ... */
+ break;
case WEECHAT_HDATA_POINTER:
/* ... */
break;