Skip to content

Commit

Permalink
Remove optional private message signal_emit()
Browse files Browse the repository at this point in the history
Remove optional private message signal_emit() for older irssi versions (sync with ailin-nemui fork).
  • Loading branch information
mglocker authored Jun 24, 2016
1 parent a6f3864 commit c4e2ea8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/fe-common/fe-icb.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,8 @@ static void event_personal(ICB_SERVER_REC *server, const char *data)
char **args;

args = icb_split(data, 2);
#if IRSSI_VERSION_DATE > 20141206
signal_emit("message private", 5, server, args[1], args[0], "",
server->nick);
#else
signal_emit("message private", 4, server, args[1], args[0], "");
#endif
icb_split_free(args);
}

Expand Down

0 comments on commit c4e2ea8

Please sign in to comment.