the version number accidentally went backwards in the last irssi update. This release mainly incorporates most of the pkgsrc patches into the upstream tarball, so the only real change of note is that /beep output has been fixed.
40 lines
1.3 KiB
Text
40 lines
1.3 KiB
Text
$NetBSD: patch-an,v 1.2 2014/09/30 08:59:58 jperkin Exp $
|
|
|
|
Support nicklists.
|
|
|
|
--- /dev/null 2009-11-03 03:54:19.098165668 +0100
|
|
+++ src/core/icb-nicklist.h 2010-05-21 13:03:14.236221682 +0200
|
|
@@ -0,0 +1,33 @@
|
|
+/*
|
|
+ icb-nicklist.h : irssi
|
|
+
|
|
+ Copyright (C) 2010 Jonathan Perkin
|
|
+
|
|
+ This program is free software; you can redistribute it and/or modify
|
|
+ it under the terms of the GNU General Public License as published by
|
|
+ the Free Software Foundation; either version 2 of the License, or
|
|
+ (at your option) any later version.
|
|
+
|
|
+ This program is distributed in the hope that it will be useful,
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
+ GNU General Public License for more details.
|
|
+
|
|
+ You should have received a copy of the GNU General Public License
|
|
+ along with this program; if not, write to the Free Software
|
|
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
+*/
|
|
+
|
|
+#ifndef __ICB_NICKLIST_H
|
|
+#define __ICB_NICKLIST_H
|
|
+
|
|
+#include "nicklist.h"
|
|
+
|
|
+/* Add new nick to list */
|
|
+NICK_REC *icb_nicklist_insert(ICB_CHANNEL_REC *channel, const char *nick,
|
|
+ int mod);
|
|
+
|
|
+void icb_nicklist_init(void);
|
|
+void icb_nicklist_deinit(void);
|
|
+
|
|
+#endif
|