Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/gretl/files: gretl-1.9.14-readline.patch
Date: Thu, 27 Mar 2014 03:38:25
Message-Id: 20140327033820.CC5D620051@flycatcher.gentoo.org
1 bicatali 14/03/27 03:38:20
2
3 Added: gretl-1.9.14-readline.patch
4 Log:
5 Fix for readline 6.3, thanks Helmut Jarausch bug #505886
6
7 (Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
8
9 Revision Changes Path
10 1.1 sci-mathematics/gretl/files/gretl-1.9.14-readline.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gretl/files/gretl-1.9.14-readline.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gretl/files/gretl-1.9.14-readline.patch?rev=1.1&content-type=text/plain
14
15 Index: gretl-1.9.14-readline.patch
16 ===================================================================
17 --- cli/complete.c.ORIG 2007-08-22 16:44:46.000000000 +0200
18 +++ cli/complete.c 2014-03-26 16:54:40.463070119 +0100
19 @@ -126,6 +126,6 @@
20 rl_readline_name = "gretl";
21
22 /* Tell the completer that we want a crack first. */
23 - rl_attempted_completion_function = (CPPFunction *) gretl_completion;
24 + rl_attempted_completion_function = (rl_completion_func_t*) gretl_completion;
25 }