summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/wee-command.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c
index 201950663..4fe6dbb6d 100644
--- a/src/core/wee-command.c
+++ b/src/core/wee-command.c
@@ -208,13 +208,6 @@ COMMAND_CALLBACK(bar)
if (string_strcasecmp (argv[1], "add") == 0)
{
COMMAND_MIN_ARGS(8, "bar add");
- if (argv[2][0] == '#')
- {
- gui_chat_printf (NULL,
- _("%sError: name can not start with \"#\""),
- gui_chat_prefix[GUI_CHAT_PREFIX_ERROR]);
- return WEECHAT_RC_OK;
- }
pos_condition = strchr (argv[3], ',');
if (pos_condition)
{
@@ -1590,13 +1583,6 @@ COMMAND_CALLBACK(filter)
argv[2]);
return WEECHAT_RC_OK;
}
- if (argv[2][0] == '#')
- {
- gui_chat_printf_date_tags (NULL, 0, GUI_FILTER_TAG_NO_FILTER,
- _("%sError: name can not start with \"#\""),
- gui_chat_prefix[GUI_CHAT_PREFIX_ERROR]);
- return WEECHAT_RC_OK;
- }
if ((strcmp (argv[4], "*") == 0) && (strcmp (argv_eol[5], "*") == 0))
{
gui_chat_printf_date_tags (NULL, 0, GUI_FILTER_TAG_NO_FILTER,
@@ -3776,13 +3762,6 @@ COMMAND_CALLBACK(proxy)
if (string_strcasecmp (argv[1], "add") == 0)
{
COMMAND_MIN_ARGS(6, "proxy add");
- if (argv[2][0] == '#')
- {
- gui_chat_printf (NULL,
- _("%sError: name can not start with \"#\""),
- gui_chat_prefix[GUI_CHAT_PREFIX_ERROR]);
- return WEECHAT_RC_OK;
- }
type = proxy_search_type (argv[3]);
if (type < 0)
{