# HG changeset patch # User mikael@frmp8452 # Date 1120258208 -3600 # Node ID ab6f83a82811aa5e997c03e3484f3569ad664e36 # Parent 259ed1de5bdca272a341df3a0ccb5c136d8ac291 Do not add /help to command completion, as it isn't implemented yet. diff -r 259ed1de5bdc -r ab6f83a82811 mcabber/src/commands.c --- a/mcabber/src/commands.c Fri Jul 01 23:49:01 2005 +0100 +++ b/mcabber/src/commands.c Fri Jul 01 23:50:08 2005 +0100 @@ -75,7 +75,7 @@ cmd_add("clear", "Clear the dialog window", 0, 0, &do_clear); cmd_add("del", "Delete the current buddy", 0, 0, &do_del); cmd_add("group", "Change group display settings", COMPL_GROUP, 0, &do_group); - cmd_add("help", "Display some help", COMPL_CMD, 0, NULL); + //cmd_add("help", "Display some help", COMPL_CMD, 0, NULL); cmd_add("info", "Show basic infos on current buddy", 0, 0, &do_info); cmd_add("move", "Move the current buddy to another group", COMPL_GROUPNAME, 0, &do_move);