summaryrefslogtreecommitdiff
path: root/doc/fr
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-03-24 19:56:43 +0100
committerSebastien Helleu <flashcode@flashtux.org>2013-03-24 19:56:43 +0100
commitff26a8d550858822904aff412784ae62132435d3 (patch)
tree344e827cf5bebbbad1dd6103b88df682ca69511b /doc/fr
parentfad848bf7caff763ace7a8b88f06307feca77bac (diff)
downloadweechat-ff26a8d550858822904aff412784ae62132435d3.zip
Revert "doc: add note about constants in lua, fix lua example (scripting guide)"
This reverts commit fad848bf7caff763ace7a8b88f06307feca77bac.
Diffstat (limited to 'doc/fr')
-rw-r--r--doc/fr/weechat_scripting.fr.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/fr/weechat_scripting.fr.txt b/doc/fr/weechat_scripting.fr.txt
index bcecc0d0e..22b505b30 100644
--- a/doc/fr/weechat_scripting.fr.txt
+++ b/doc/fr/weechat_scripting.fr.txt
@@ -72,8 +72,6 @@ Lua
^^^
* Les fonctions sont appelées par `weechat.xxx(arg1, arg2, ...)`
-* Les constantes dans l'API sont en fait des fonctions, la valeur retournée doit
- être utilisée comme constante (et non la fonction elle-même).
Tcl
^^^
@@ -335,7 +333,7 @@ Weechat.hook_timer(1000, 0, 1, "timer_cb", "test");
----------------------------------------
function timer_cb(data, remaining_calls)
weechat.print("", "timer! data="..data)
- return weechat.WEECHAT_RC_OK()
+ return weechat.WEECHAT_RC_OK
end
weechat.hook_timer(1000, 0, 1, "timer_cb", "test")