From 7b7a24c3f27b74e95c24e62917bcc4ba8478196d Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Tue, 4 Sep 2007 15:07:32 -0500 Subject: there shouldn't ever be a reason to not want to strip ctcp quoting off when splitting, so remove that option --- src/irc.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/irc.lua') diff --git a/src/irc.lua b/src/irc.lua index 3d7d68f..761039b 100644 --- a/src/irc.lua +++ b/src/irc.lua @@ -225,7 +225,7 @@ end -- on_privmsg {{{ function handlers.on_privmsg(from, to, msg) - local msgs = ctcp._ctcp_split(msg, true) + local msgs = ctcp._ctcp_split(msg) for _, v in base.ipairs(msgs) do if base.type(v) == "string" then -- normal message {{{ @@ -258,7 +258,7 @@ end -- on_notice {{{ function handlers.on_notice(from, to, msg) - local msgs = ctcp._ctcp_split(msg, true) + local msgs = ctcp._ctcp_split(msg) for _, v in base.ipairs(msgs) do if base.type(v) == "string" then -- normal message {{{ -- cgit v1.2.3