changeset 902:2016f52a167f

Sort commands (for the completion system)
author Mikael Berthe <mikael@lilotux.net>
date Wed, 21 Jun 2006 20:50:56 +0200
parents 45ddb3ada74f
children c4f164c4b0d3
files mcabber/src/commands.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);