Rename cap_* funcs to irc_cap_*

Some systems often "namespace" cap_ for themselves, and so irssi's
usage can conflict with their own. Bump ABI for this.
This commit is contained in:
Calvin Buckley 2018-11-25 14:50:47 +00:00
commit a634b34ba4
7 changed files with 20 additions and 20 deletions

View file

@ -155,6 +155,6 @@ irc_server_cap_toggle(server, cap, enable)
char *cap
int enable
CODE:
RETVAL = cap_toggle(server, cap, enable);
RETVAL = irc_cap_toggle(server, cap, enable);
OUTPUT:
RETVAL