# HG changeset patch # User Mikael Berthe # Date 1150915856 -7200 # Node ID 2016f52a167f3bc0c4f8dda63d84e204da19fe75 # Parent 45ddb3ada74f3940301d7a2d7a1adf6bc47e9aef Sort commands (for the completion system) diff -r 45ddb3ada74f -r 2016f52a167f mcabber/src/commands.c --- a/mcabber/src/commands.c Sat Jun 17 11:08:49 2006 +0200 +++ b/mcabber/src/commands.c Wed Jun 21 20:50:56 2006 +0200 @@ -104,12 +104,12 @@ 0, &do_move); cmd_add("msay", "Send a multi-lines message to the selected buddy", COMPL_MULTILINE, 0, &do_msay); - cmd_add("room", "MUC actions command", COMPL_ROOM, 0, &do_room); - cmd_add("request", "Send a Jabber IQ request", COMPL_REQUEST, COMPL_JID, - &do_request); cmd_add("quit", "Exit the software", 0, 0, NULL); cmd_add("rawxml", "Send a raw XML string", 0, 0, &do_rawxml); cmd_add("rename", "Rename the current buddy", 0, 0, &do_rename); + cmd_add("request", "Send a Jabber IQ request", COMPL_REQUEST, COMPL_JID, + &do_request); + cmd_add("room", "MUC actions command", COMPL_ROOM, 0, &do_room); cmd_add("roster", "Manipulate the roster/buddylist", COMPL_ROSTER, 0, &do_roster); cmd_add("say", "Say something to the selected buddy", 0, 0, &do_say);