1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-08 22:16:46 +02:00
This commit is contained in:
Jfreegman
2013-08-05 02:32:50 -04:00
parent 765a722c90
commit 8ab8f6b834
2 changed files with 27 additions and 16 deletions

4
chat.c
View File

@ -236,6 +236,7 @@ void print_help(ChatContext* self) {
wprintw(self->history, " /nick <nickname> : Set your nickname\n");
wprintw(self->history, " /myid : Print your ID\n");
wprintw(self->history, " /clear : Clear the screen\n");
wprintw(self->history, " /close : Closes the current chat window\n");
wprintw(self->history, " /quit or /exit : Exit program\n");
wprintw(self->history, " /help : Print this message again\n\n");
@ -264,5 +265,6 @@ ToxWindow new_chat(int friendnum) {
x->friendnum = friendnum;
ret.x = (void*) x;
free(x);
return ret;
}
}