blob: bd66580c06971fced48f618965ea00df95cbb8cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- vm/readln.c.orig 2003-08-21 01:11:03 UTC
+++ vm/readln.c
@@ -43,7 +43,7 @@ char** coustom_completion(const char* te
char** matches=(char**) NULL;
if (start == 0)
- matches = rl_completion_matches (text, command_generator);
+ matches = (char **)completion_matches (text, command_generator);
return (matches);
}
|