]> code.citadel.org Git - citadel.git/commitdiff
[aug 25 btx]
authorBrian Costello <btx@uncensored.citadel.org>
Wed, 26 Aug 1998 05:24:54 +0000 (05:24 +0000)
committerBrian Costello <btx@uncensored.citadel.org>
Wed, 26 Aug 1998 05:24:54 +0000 (05:24 +0000)
o Made small change to allow for modularization

citadel/serv_chat.c

index d22f5ec9ef2e0a6b4eca14659fbd729638e5adbf..2ceffe1ec062b342f0709be60405a0cb61465413 100644 (file)
@@ -25,6 +25,7 @@
 struct ChatLine *ChatQueue = NULL;
 int ChatLastMsg = 0;
 
+extern struct CitContext *ContextList;
 
 void allwrite(char *cmdbuf, int flag, char *roomname, char *username)
 {      
@@ -349,19 +350,6 @@ void cmd_pexp(void) {
        cprintf("000\n");
        }
 
-/*
- * returns an asterisk if there are any express messages waiting,
- * space otherwise.
- */
-char check_express(void) {
-       if (CC->FirstExpressMessage == NULL) {
-               return(' ');
-               }
-       else {
-               return('*');
-               }
-       }
-
 
 /*
  * send express messages  <bc>