summaryrefslogtreecommitdiff
path: root/doc/en
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-02-20 09:50:38 +0100
committerSebastien Helleu <flashcode@flashtux.org>2010-02-20 09:50:38 +0100
commitcd5b8c8f9e5a135a1fbb2417868aafe5f40ce30d (patch)
tree65dedc790a96a4cdbbd14507b5f151b406f599cb /doc/en
parentf4849bc625f77e69563b7189c9442968effebc20 (diff)
downloadweechat-cd5b8c8f9e5a135a1fbb2417868aafe5f40ce30d.zip
Add parentheses around exponents in user guide and plugin API reference
Diffstat (limited to 'doc/en')
-rw-r--r--doc/en/weechat_plugin_api.en.txt18
-rw-r--r--doc/en/weechat_user.en.txt34
2 files changed, 26 insertions, 26 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt
index 54c1e07fb..2b38da06c 100644
--- a/doc/en/weechat_plugin_api.en.txt
+++ b/doc/en/weechat_plugin_api.en.txt
@@ -5478,13 +5478,13 @@ Arguments:
|========================================
| Plugin | Signal | Arguments | Description
-| irc | xxx,irc_in_yyy ^1^ | string: message |
+| irc | xxx,irc_in_yyy ^(1)^ | string: message |
irc message from server (before irc plugin uses it)
-| irc | xxx,irc_in2_yyy ^1^ | string: message |
+| irc | xxx,irc_in2_yyy ^(1)^ | string: message |
irc message from server (after irc plugin uses it)
-| irc | xxx,irc_out_yyy ^1^ | string: message |
+| irc | xxx,irc_out_yyy ^(1)^ | string: message |
irc message sent to server
| irc | irc_ctcp | string: message |
@@ -5657,7 +5657,7 @@ Arguments:
|========================================
[NOTE]
-^1^ 'xxx' is IRC server name, 'yyy' is IRC command name.
+^(1)^ 'xxx' is IRC server name, 'yyy' is IRC command name.
* 'callback': function called when signal is received, arguments:
** 'void *data': pointer
@@ -5966,17 +5966,17 @@ Arguments:
any string |
string with IRC color codes, or without color
-| irc | irc_in_xxx ^1^ |
+| irc | irc_in_xxx ^(1)^ |
server name |
content of message received from IRC server |
new content of message
-| irc | irc_out_xxx ^1^ |
+| irc | irc_out_xxx ^(1)^ |
server name |
content of message about to be sent to IRC server |
new content of message
-| weechat | bar_condition_yyy ^2^ |
+| weechat | bar_condition_yyy ^(2)^ |
string with window pointer ("0x123..") |
empty string |
"1" to display bar, "0" to hide it
@@ -6003,8 +6003,8 @@ Arguments:
|========================================
[NOTE]
-^1^ 'xxx' is IRC command name. +
-^2^ 'yyy' is bar name.
+^(1)^ 'xxx' is IRC command name. +
+^(2)^ 'yyy' is bar name.
* 'callback': function called when modifier is used, arguments:
** 'void *data': pointer
diff --git a/doc/en/weechat_user.en.txt b/doc/en/weechat_user.en.txt
index 6c981941a..dd2d2ca38 100644
--- a/doc/en/weechat_user.en.txt
+++ b/doc/en/weechat_user.en.txt
@@ -84,26 +84,26 @@ compile WeeChat.
[width="80%",cols="4,^2,13",options="header"]
|========================================
-| Package ^1^ | Required | Feature
-| cmake | *yes* | build (autotools still possible, but cmake is recommended)
-| libncursesw5-dev ^2^ | *yes* | ncurses interface
-| libgcrypt11-dev | no | SASL authentication with IRC server, using mechanism DH-BLOWFISH
-| libgnutls-dev | no | SSL connection to IRC server
-| libaspell-dev | no | aspell plugin
-| libperl-dev | no | perl plugin
-| python-dev | no | python plugin
-| ruby1.8-dev | no | ruby plugin
-| liblua5.1-0-dev | no | lua plugin
-| tcl-dev | no | tcl plugin
-| asciidoc (>= 8.2) | no | build documentation (HTML files)
-| source-highlight | no | syntax highlight for sources in HTML documentation
+| Package ^(1)^ | Required | Feature
+| cmake | *yes* | build (autotools still possible, but cmake is recommended)
+| libncursesw5-dev ^(2)^ | *yes* | ncurses interface
+| libgcrypt11-dev | no | SASL authentication with IRC server, using mechanism DH-BLOWFISH
+| libgnutls-dev | no | SSL connection to IRC server
+| libaspell-dev | no | aspell plugin
+| libperl-dev | no | perl plugin
+| python-dev | no | python plugin
+| ruby1.8-dev | no | ruby plugin
+| liblua5.1-0-dev | no | lua plugin
+| tcl-dev | no | tcl plugin
+| asciidoc (>= 8.2) | no | build documentation (HTML files)
+| source-highlight | no | syntax highlight for sources in HTML documentation
|========================================
[NOTE]
-^1^ name comes from GNU/Linux Debian distribution, version in package name can
-be different +
-^2^ WeeChat can compile with libncurses5-dev, but it is *NOT* recommended (you
-will have display bugs with wide chars)
+^(1)^ Name comes from GNU/Linux Debian distribution, version in package name can
+be different. +
+^(2)^ WeeChat can compile with libncurses5-dev, but it is *NOT* recommended (you
+will have display bugs with wide chars).
[[compile_with_cmake]]
Compile with cmake