1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 06:45:25 +00:00

command option/parameter completion was case sensitive (ie. /MSG <tab>

didn't, work, /msg <tab> did)


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1624 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-07-14 20:06:00 +00:00 committed by cras
parent e2da644c76
commit c930f8f8e6

View File

@ -483,6 +483,8 @@ static char *line_get_command(const char *line, char **args, int aliases)
*args = (char *) cmdargs;
} while (ptr != NULL);
if (cmd != NULL)
g_strdown(cmd);
return cmd;
}