diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-02-21 00:30:18 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-02-21 00:30:18 (GMT) |
commit | c355f0cae932bd1548ff5797af9846fcb32aa6f7 (patch) | |
tree | a74227f6947343ba8fb5fe6e94d48d92812112f5 /Modules/readline.c | |
parent | d08baa95042c349a7129e1857678a74446b9b232 (diff) | |
download | cpython-c355f0cae932bd1548ff5797af9846fcb32aa6f7.zip cpython-c355f0cae932bd1548ff5797af9846fcb32aa6f7.tar.gz cpython-c355f0cae932bd1548ff5797af9846fcb32aa6f7.tar.bz2 |
flex_complete looks like a private (but callback) function, so make it static
Diffstat (limited to 'Modules/readline.c')
-rw-r--r-- | Modules/readline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/readline.c b/Modules/readline.c index 56115e9..b364b72 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); |