cvs add a patch missing from the last commit.

Reported by:	Daniel Mueller <mue.da@gmx.de>
This commit is contained in:
Joe Marcus Clarke 2002-07-27 17:19:05 +00:00
parent 9440bdd7a2
commit 6aae8c9ea4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=63635
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,11 @@
--- tools/gda-config-tool.c.orig Fri Jul 26 16:19:17 2002
+++ tools/gda-config-tool.c Fri Jul 26 16:18:47 2002
@@ -1136,7 +1136,7 @@
static char **
completion_func (const gchar *text, int start, int end)
{
- return ((start == 0) ? rl_completion_matches (text, cmd_generator) :
+ return ((start == 0) ? completion_matches (text, cmd_generator) :
NULL);
}

View file

@ -0,0 +1,11 @@
--- tools/gda-config-tool.c.orig Fri Jul 26 16:19:17 2002
+++ tools/gda-config-tool.c Fri Jul 26 16:18:47 2002
@@ -1136,7 +1136,7 @@
static char **
completion_func (const gchar *text, int start, int end)
{
- return ((start == 0) ? rl_completion_matches (text, cmd_generator) :
+ return ((start == 0) ? completion_matches (text, cmd_generator) :
NULL);
}