summaryrefslogtreecommitdiff
path: root/chat/ircII/patches
diff options
context:
space:
mode:
authormrg <mrg@pkgsrc.org>2001-12-10 13:38:29 +0000
committermrg <mrg@pkgsrc.org>2001-12-10 13:38:29 +0000
commit43068be68e39c17291e6f205027d1301eebe9ec5 (patch)
treefa3eb7a5888021a06c6ebff6c209195b57b4e7d9 /chat/ircII/patches
parentb00db3713a94f1e1857a77d1a83b58131db0c288 (diff)
downloadpkgsrc-43068be68e39c17291e6f205027d1301eebe9ec5.tar.gz
upgrade to ircii 20011210. this includes:
o new /on raw_send o new /exec -filter option o fixed mIRC colour code handling o enhanced redirection to multiple targets o bug fix for $mid() o bug fix for when resizing to a smaller window o other bug fixes
Diffstat (limited to 'chat/ircII/patches')
-rw-r--r--chat/ircII/patches/patch-ab95
1 files changed, 0 insertions, 95 deletions
diff --git a/chat/ircII/patches/patch-ab b/chat/ircII/patches/patch-ab
deleted file mode 100644
index 90c38c2a6b4..00000000000
--- a/chat/ircII/patches/patch-ab
+++ /dev/null
@@ -1,95 +0,0 @@
-$NetBSD: patch-ab,v 1.5 2001/10/02 14:13:38 mrg Exp $
-
-Index: source/screen.c
-===================================================================
-RCS file: /home/cvs/ircii/source/screen.c,v
-retrieving revision 1.119
-retrieving revision 1.121
-diff -p -c -r1.119 -r1.121
-*** source/screen.c 2001/05/19 20:57:36 1.119
---- source/screen.c 2001/07/20 00:42:39 1.121
-*************** output_line(str, result, startpos)
-*** 688,695 ****
- /* parse all consequent colour settings */
- int fg, bg;
-
-! fg = *++ptr - 1;
-! bg = *++ptr - 1;
- if (fg < 16)
- fgcolour = fg;
- if (bg < 16)
---- 688,705 ----
- /* parse all consequent colour settings */
- int fg, bg;
-
-! if (!*++ptr)
-! {
-! str = ptr;
-! break;
-! }
-! fg = *ptr - 1;
-! if (!*++ptr)
-! {
-! str = ptr;
-! break;
-! }
-! bg = *ptr - 1;
- if (fg < 16)
- fgcolour = fg;
- if (bg < 16)
-*************** output_line(str, result, startpos)
-*** 712,719 ****
- }
- if (written > CO)
- len = len - (written - CO);
-! if (!startpos)
-! fwrite(str, len, 1, current_screen->fpout);
-
- if (!underline)
- {
---- 722,729 ----
- }
- if (written > CO)
- len = len - (written - CO);
-! if (!startpos && len > 0)
-! fwrite(str, (size_t)len, 1, current_screen->fpout);
-
- if (!underline)
- {
-*************** output_line(str, result, startpos)
-*** 747,758 ****
- }
- if (written > CO)
- len = len - (written - CO);
-! if (!startpos)
-! fwrite(str, len, 1, current_screen->fpout);
- do
- {
-! charset_type = *++ptr;
-! charset = *++ptr;
- } while (ptr[1] == CHARSET_TAG && ptr++);
- display_charset(charset_type, charset);
- str = ++ptr;
---- 757,778 ----
- }
- if (written > CO)
- len = len - (written - CO);
-! if (!startpos && len > 0)
-! fwrite(str, (size_t)len, 1, current_screen->fpout);
- do
- {
-! if (!*++ptr)
-! {
-! str = ptr;
-! break;
-! }
-! charset_type = *ptr;
-! if (!*++ptr)
-! {
-! str = ptr;
-! break;
-! }
-! charset = *ptr;
- } while (ptr[1] == CHARSET_TAG && ptr++);
- display_charset(charset_type, charset);
- str = ++ptr;