ports/devel/elfsh/files/patch-vm_readln.c
Baptiste Daroussin 3c4a170b07 Fix collision with dprintf(3)
While here, regenerate patches and move some post-patch into an already existing
patch
2016-07-29 23:02:48 +00:00

11 lines
336 B
C

--- 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);
}