summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2012-08-20 15:28:50 +0200
committerSebastien Helleu <flashcode@flashtux.org>2012-08-20 15:28:50 +0200
commit1fe7d25c8d51a5798e29981f89d32a931f94a13e (patch)
tree5786bc191d838568005a3c5928e38b85587203cf
parent2944adc954c6dc3267ec8a8ac39334a0dc53b684 (diff)
downloadweechat-1fe7d25c8d51a5798e29981f89d32a931f94a13e.zip
core: fix quote used in /help option for values (type integer with strings)
-rw-r--r--src/core/wee-command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c
index d9ef42458..0b84ab7b9 100644
--- a/src/core/wee-command.c
+++ b/src/core/wee-command.c
@@ -2093,9 +2093,9 @@ COMMAND_CALLBACK(help)
i = 0;
while (ptr_option->string_values[i])
{
- strcat (string, "'");
+ strcat (string, "\"");
strcat (string, ptr_option->string_values[i]);
- strcat (string, "'");
+ strcat (string, "\"");
if (ptr_option->string_values[i + 1])
strcat (string, ", ");
i++;