diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-06-24 07:58:23 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-06-24 07:58:23 +0200 |
commit | 52437427af75dcf002631b16f7884d5f49a15b43 (patch) | |
tree | ad12dc1c94b747a73c3088b9325febf7d0d85c63 /doc/it/weechat_plugin_api.it.asciidoc | |
parent | 2bd2d74a0720f02d9e5587331659c4d1bbd4e97f (diff) | |
download | weechat-52437427af75dcf002631b16f7884d5f49a15b43.zip |
doc: update examples for functon string_eval_path_home() in plugin API reference
Diffstat (limited to 'doc/it/weechat_plugin_api.it.asciidoc')
-rw-r--r-- | doc/it/weechat_plugin_api.it.asciidoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/it/weechat_plugin_api.it.asciidoc b/doc/it/weechat_plugin_api.it.asciidoc index 0acfa2424..25b34f5f7 100644 --- a/doc/it/weechat_plugin_api.it.asciidoc +++ b/doc/it/weechat_plugin_api.it.asciidoc @@ -998,8 +998,8 @@ Esempio in C: [source,C] ---- -char *str = weechat_string_expand_home ("%h/test/file.txt"); -/* result: "/home/xxx/.weechat/test/file.txt" */ +char *str = weechat_string_expand_home ("%h/test"); +/* result: "/home/xxx/.weechat/test" */ /* ... */ free (str); ---- @@ -1012,8 +1012,8 @@ Script (Python): path = weechat.string_eval_path_home(path, pointers, extra_vars, options) # esempio -path = weechat.string_eval_path_home("%h/test/file.txt", "", "", "") -# path == "/home/xxx/.weechat/test/file.txt" +path = weechat.string_eval_path_home("%h/test", "", "", "") +# path == "/home/xxx/.weechat/test" ---- ==== string_remove_quotes |