Remove, no longer needed - pkgsrc-localpatches - leot's pkgsrc LOCALPATCHES
(HTM) hg clone https://bitbucket.org/iamleot/pkgsrc-localpatches
(DIR) Log
(DIR) Files
(DIR) Refs
---
(DIR) changeset 50dfaead02e7e29d5812fc612293764074059a66
(DIR) parent e528202c2be42ddd187a44dba042923af8d0458f
(HTM) Author: Leonardo Taccari <iamleot@gmail.com>
Date: Thu, 17 Jan 2019 08:42:08
Remove, no longer needed
Diffstat:
chat/ircII/patch-source_edit.c | 28 ----------------------------
1 files changed, 0 insertions(+), 28 deletions(-)
---
diff -r e528202c2be4 -r 50dfaead02e7 chat/ircII/patch-source_edit.c
--- a/chat/ircII/patch-source_edit.c Sat Jan 12 17:36:23 2019 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-$NetBSD$
-
-Fix a possible SIGSEGV when doing:
-
- /bind ^I command_completion
- /^I
-
-NUMBER_OF_COMMANDS should be decreased by 2 for `cmd_cnt' in the special case
-for the empty string because:
-
- - We should omit the first command in irc_command[] (via the `command++' line
- before cmd_cnt assignment)
- - We should also omit the last NULL command in irc_command[].
-
-This will be no longer needed on newer ircII stable version, <mrg>
-fixed it in a cleaner way!
-
---- source/edit.c.orig 2017-07-04 06:48:25.000000000 +0000
-+++ source/edit.c
-@@ -2403,7 +2403,7 @@ command_completion(u_int key, u_char *pt
- if (*(command[0].name) == '\0')
- {
- command++;
-- cmd_cnt = NUMBER_OF_COMMANDS;
-+ cmd_cnt = NUMBER_OF_COMMANDS - 2;
- }
- }
- if ((alias_cnt == 1) && (cmd_cnt == 0))