summaryrefslogtreecommitdiff
path: root/src/perl/irc
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-05-13 18:25:21 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-05-13 18:25:21 +0000
commitb933f62111cb088c9d5c8f9289cd6ebbdd409010 (patch)
tree7e53f414d722c6ac5e617b33b5aa4a0acb732208 /src/perl/irc
parenta5f4fd43cc088380291ab275aae0e7f67ee2d12b (diff)
downloadirssi-b933f62111cb088c9d5c8f9289cd6ebbdd409010.zip
fixes
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2791 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/irc')
-rw-r--r--src/perl/irc/Dcc.xs2
-rw-r--r--src/perl/irc/Modes.xs4
-rw-r--r--src/perl/irc/Server.xs2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/perl/irc/Dcc.xs b/src/perl/irc/Dcc.xs
index 8c906a19..eff4e982 100644
--- a/src/perl/irc/Dcc.xs
+++ b/src/perl/irc/Dcc.xs
@@ -65,7 +65,7 @@ PREINIT:
char *ret;
PPCODE:
ret = dcc_get_download_path(fname);
- xPUSHs(sv_2mortal(new_pv(ret)));
+ XPUSHs(sv_2mortal(new_pv(ret)));
g_free(ret);
#*******************************
diff --git a/src/perl/irc/Modes.xs b/src/perl/irc/Modes.xs
index 723930fb..411b07e8 100644
--- a/src/perl/irc/Modes.xs
+++ b/src/perl/irc/Modes.xs
@@ -12,7 +12,7 @@ PREINIT:
char *ret;
PPCODE:
ret = modes_join(old, mode, channel);
- xPUSHs(sv_2mortal(new_pv(ret)));
+ XPUSHs(sv_2mortal(new_pv(ret)));
g_free(ret);
#*******************************
@@ -28,7 +28,7 @@ PREINIT:
char *ret;
PPCODE:
ret = ban_get_mask(channel, nick, ban_type);
- xPUSHs(sv_2mortal(new_pv(ret)));
+ XPUSHs(sv_2mortal(new_pv(ret)));
g_free(ret);
Irssi::Irc::Ban
diff --git a/src/perl/irc/Server.xs b/src/perl/irc/Server.xs
index dfe88f65..85b13f80 100644
--- a/src/perl/irc/Server.xs
+++ b/src/perl/irc/Server.xs
@@ -52,7 +52,7 @@ PREINIT:
char *ret;
PPCODE:
ret = irc_server_get_channels(server);
- xPUSHs(sv_2mortal(new_pv(ret)));
+ XPUSHs(sv_2mortal(new_pv(ret)));
g_free(ret);
void