From: Neal Norwitz Date: Fri, 21 Feb 2003 00:30:18 +0000 (+0000) Subject: flex_complete looks like a private (but callback) function, so make it static X-Git-Tag: v2.3c1~1744 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c355f0cae932bd1548ff5797af9846fcb32aa6f7;p=python flex_complete looks like a private (but callback) function, so make it static --- diff --git a/Modules/readline.c b/Modules/readline.c index 56115e9eed..b364b72662 100644 --- a/Modules/readline.c +++ b/Modules/readline.c @@ -577,7 +577,7 @@ on_completion(char *text, int state) /* A more flexible constructor that saves the "begidx" and "endidx" * before calling the normal completer */ -char ** +static char ** flex_complete(char *text, int start, int end) { Py_XDECREF(begidx);