summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-07-23 07:49:05 +0200
committerSébastien Helleu <flashcode@flashtux.org>2014-07-23 07:49:05 +0200
commitd9d36c8dd4691459519343b7f29336d4477c5c3d (patch)
tree94c998bed63b9db55c91145c496276094aba4c8c /src
parent197cd303799971adfa3f23df8da4c02f61c25526 (diff)
downloadweechat-d9d36c8dd4691459519343b7f29336d4477c5c3d.zip
trigger: update comment
Diffstat (limited to 'src')
-rw-r--r--src/plugins/trigger/trigger.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/trigger/trigger.c b/src/plugins/trigger/trigger.c
index b4931c141..8416e0f3f 100644
--- a/src/plugins/trigger/trigger.c
+++ b/src/plugins/trigger/trigger.c
@@ -706,7 +706,8 @@ trigger_name_valid (const char *name)
/* no spaces allowed */
if (strchr (name, ' '))
return 0;
- /* no periods allowed since it is saved via wee_config option name */
+
+ /* no periods allowed */
if (strchr (name, '.'))
return 0;