escape_string() only takes one arg

2002-07-31  jacob berkman  <jacob@ximian.com>

	* gtk/queryimmodules.c (print_escaped): escape_string() only takes
	one arg
This commit is contained in:
jacob berkman 2002-07-31 19:08:39 +00:00 committed by Jacob Berkman
parent 30f84bb856
commit d202b55bc0
7 changed files with 31 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-07-31 jacob berkman <jacob@ximian.com>
* gtk/queryimmodules.c (print_escaped): escape_string() only takes
one arg
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@ -1,3 +1,8 @@
2002-07-31 jacob berkman <jacob@ximian.com>
* gtk/queryimmodules.c (print_escaped): escape_string() only takes
one arg
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@ -1,3 +1,8 @@
2002-07-31 jacob berkman <jacob@ximian.com>
* gtk/queryimmodules.c (print_escaped): escape_string() only takes
one arg
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@ -1,3 +1,8 @@
2002-07-31 jacob berkman <jacob@ximian.com>
* gtk/queryimmodules.c (print_escaped): escape_string() only takes
one arg
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@ -1,3 +1,8 @@
2002-07-31 jacob berkman <jacob@ximian.com>
* gtk/queryimmodules.c (print_escaped): escape_string() only takes
one arg
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@ -1,3 +1,8 @@
2002-07-31 jacob berkman <jacob@ximian.com>
* gtk/queryimmodules.c (print_escaped): escape_string() only takes
one arg
Wed Jul 31 12:50:51 2002 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c: Avoid using g_strescape(),

View File

@ -72,7 +72,7 @@ escape_string (const char *str)
static void
print_escaped (const char *str)
{
char *tmp = escape_string (str, NULL);
char *tmp = escape_string (str);
printf ("\"%s\" ", tmp);
g_free (tmp);
}