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
1 2004-04-14 Jordi Mallach
2
3 * examples/pop3client (pop_completion): Use rl_completion_matches.
4 Fixes potential crash on 64-bit architectures.
5
1 2004-04-08 Sergey Poznyakoff 6 2004-04-08 Sergey Poznyakoff
2 7
3 * configure.ac: Add AM_ICONV 8 * configure.ac: Add AM_ICONV
......
...@@ -164,7 +164,7 @@ pop_completion (char *text, int start, int end) ...@@ -164,7 +164,7 @@ pop_completion (char *text, int start, int end)
164 to complete. Otherwise it is the name of a file in the current 164 to complete. Otherwise it is the name of a file in the current
165 directory. */ 165 directory. */
166 if (start == 0) 166 if (start == 0)
167 matches = completion_matches (text, command_generator); 167 matches = rl_completion_matches (text, command_generator);
168 168
169 return (matches); 169 return (matches);
170 } 170 }
......