Commit d5100899 d5100899bf6208675f99fad0133437931442bcc9 by Jordi Mallach

2004-04-14 Jordi Mallach

	* examples/pop3client (pop_completion): Use rl_completion_matches.
	Fixes potential crash on 64-bit architectures.
1 parent 5147dc4b
2004-04-14 Jordi Mallach
* examples/pop3client (pop_completion): Use rl_completion_matches.
Fixes potential crash on 64-bit architectures.
2004-04-08 Sergey Poznyakoff
* configure.ac: Add AM_ICONV
......
......@@ -164,7 +164,7 @@ pop_completion (char *text, int start, int end)
to complete. Otherwise it is the name of a file in the current
directory. */
if (start == 0)
matches = completion_matches (text, command_generator);
matches = rl_completion_matches (text, command_generator);
return (matches);
}
......