summaryrefslogtreecommitdiff
path: root/chat/ircII/patches
diff options
context:
space:
mode:
authormrg <mrg@pkgsrc.org>2014-08-25 06:22:18 +0000
committermrg <mrg@pkgsrc.org>2014-08-25 06:22:18 +0000
commitf9901dbe03b9a7bc05bc983be578ac0b5324299e (patch)
treed9b8566801039e07c63f757c68b9520635b61f80 /chat/ircII/patches
parent735480c9c89c04e78159e1f122b4750e7c64ffcc (diff)
downloadpkgsrc-f9901dbe03b9a7bc05bc983be578ac0b5324299e.tar.gz
update to ircII 20140824.
main changes are significant internal cleanup, dozens of minor bug fixes, and two new major features: connect via HTTP proxy, and connect to SSL IRC servers.
Diffstat (limited to 'chat/ircII/patches')
-rw-r--r--chat/ircII/patches/patch-source_input.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/chat/ircII/patches/patch-source_input.c b/chat/ircII/patches/patch-source_input.c
deleted file mode 100644
index 633f631886d..00000000000
--- a/chat/ircII/patches/patch-source_input.c
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-source_input.c,v 1.1 2014/03/12 07:22:34 mrg Exp $
-
-fix a problem with the input line when it goes beyond the screen size
-
-Index: source/input.c
-===================================================================
-RCS file: /home/cvs/ircii/source/input.c,v
-retrieving revision 1.55
-retrieving revision 1.56
-diff -p -r1.55 -r1.56
-*** source/input.c 30 Dec 2013 16:42:38 -0000 1.55
---- source/input.c 30 Jan 2014 10:13:06 -0000 1.56
-*************** update_input(update)
-*** 488,493 ****
---- 484,491 ----
- }
- }
- VisBuf[optr] = '\0';
-+ if (old_cursor_pos > inputdata->cursor_x)
-+ old_cursor_pos = 0;
- term_move_cursor(old_cursor_pos, inputdata->cursor_y);
- written = output_line(VisBuf + old_cursor_pos, 0);
- if (term_clear_to_eol() && written < current_screen->co)