diff mcabber/src/commands.c @ 277:4d7040cff8ee

Remove busy/occupied status, which does not really exist
author Mikael Berthe <mikael@lilotux.net>
date Tue, 05 Jul 2005 20:48:44 +0100
parents 49e9e02dd6d0
children 00b2377539ac
line wrap: on
line diff
--- a/mcabber/src/commands.c	Mon Jul 04 12:55:54 2005 +0100
+++ b/mcabber/src/commands.c	Tue Jul 05 20:48:44 2005 +0100
@@ -98,7 +98,6 @@
   compl_add_category_word(COMPL_STATUS, "invisible");
   compl_add_category_word(COMPL_STATUS, "free");
   compl_add_category_word(COMPL_STATUS, "dnd");
-  compl_add_category_word(COMPL_STATUS, "busy");
   compl_add_category_word(COMPL_STATUS, "notavail");
   compl_add_category_word(COMPL_STATUS, "away");
 
@@ -310,7 +309,6 @@
   else if (!strcasecmp(arg, "away"))      st = away;
   else if (!strcasecmp(arg, "invisible")) st = invisible;
   else if (!strcasecmp(arg, "dnd"))       st = dontdisturb;
-  else if (!strcasecmp(arg, "busy"))      st = occupied;
   else if (!strcasecmp(arg, "notavail"))  st = notavail;
   else if (!strcasecmp(arg, "free"))      st = freeforchat;
   else {