diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2004-10-03 12:43:32 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2004-10-03 12:43:32 +0000 |
commit | 4e5f1698ba98ca879ddafc2fdef72c295a50e6b3 (patch) | |
tree | 0b5ac961989ea84f30f9aee53e70c0720f728c05 /src/common/weeconfig.c | |
parent | 0a6945b6ed451c3277b7c07313412ea7d31aeb50 (diff) | |
download | weechat-4e5f1698ba98ca879ddafc2fdef72c295a50e6b3.zip |
Fixed bug when adding alias with same name as other
Diffstat (limited to 'src/common/weeconfig.c')
-rw-r--r-- | src/common/weeconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c index e08833175..ddf275d89 100644 --- a/src/common/weeconfig.c +++ b/src/common/weeconfig.c @@ -981,7 +981,7 @@ config_read () if (section == CONFIG_SECTION_ALIAS) { if (alias_new (line, pos)) - index_command_new (pos); + index_command_new (line); } else { |