python/manuel: update to 1.13.0
[oi-userland.git] / components / runtime / clisp / patches / modules_readline_readline.patch
blobd4d130688331cd955fa43c1adb4f0043cc2edcc2
1 $NetBSD: patch-modules_readline_readline.lisp,v 1.2 2016/09/20 14:14:08 wiz Exp $
3 rl_readline_state changed from int to unsigned long in readline-7.0.
4 https://sourceforge.net/p/clisp/bugs/688/
6 --- modules/readline/readline.lisp.orig 2010-01-06 22:18:03.000000000 +0000
7 +++ modules/readline/readline.lisp
8 @@ -424,7 +424,7 @@ name in ~/.inputrc. This is preferred wa
9 "The version of this incarnation of the readline library, e.g., 0x0402."))
10 (def-c-var gnu-readline-p (:name "rl_gnu_readline_p") (:type int)
11 (:documentation "True if this is real GNU readline."))
12 -(def-c-var readline-state (:name "rl_readline_state") (:type int)
13 +(def-c-var readline-state (:name "rl_readline_state") (:type ulong)
14 (:documentation "Flags word encapsulating the current readline state."))
15 (def-c-var editing-mode (:name "rl_editing_mode") (:type int)
16 (:documentation "Says which editing mode readline is currently using.