summaryrefslogtreecommitdiff
path: root/doc/en
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2015-06-24 07:58:23 +0200
committerSébastien Helleu <flashcode@flashtux.org>2015-06-24 07:58:23 +0200
commit52437427af75dcf002631b16f7884d5f49a15b43 (patch)
treead12dc1c94b747a73c3088b9325febf7d0d85c63 /doc/en
parent2bd2d74a0720f02d9e5587331659c4d1bbd4e97f (diff)
downloadweechat-52437427af75dcf002631b16f7884d5f49a15b43.zip
doc: update examples for functon string_eval_path_home() in plugin API reference
Diffstat (limited to 'doc/en')
-rw-r--r--doc/en/weechat_plugin_api.en.asciidoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/en/weechat_plugin_api.en.asciidoc b/doc/en/weechat_plugin_api.en.asciidoc
index d9bfa0ecb..ae81a8f3b 100644
--- a/doc/en/weechat_plugin_api.en.asciidoc
+++ b/doc/en/weechat_plugin_api.en.asciidoc
@@ -957,8 +957,8 @@ C example:
[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);
----
@@ -971,8 +971,8 @@ Script (Python):
path = weechat.string_eval_path_home(path, pointers, extra_vars, options)
# example
-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