1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-04-28 10:06:53 +02:00

Don't show the special G_OPTION_REMAINING entry. (, Matthew F.

2004-12-21  Matthias Clasen  <mclasen@redhat.com>

	* glib/goption.c (print_entry): Don't show
	the special G_OPTION_REMAINING entry.  (,
	Matthew F. Barnes)
This commit is contained in:
Matthias Clasen 2004-12-22 04:34:43 +00:00 committed by Matthias Clasen
parent 8693257c06
commit 543cd4b10f
6 changed files with 33 additions and 0 deletions

@ -1,3 +1,9 @@
2004-12-21 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (print_entry): Don't show
the special G_OPTION_REMAINING entry. (#161934,
Matthew F. Barnes)
2004-12-20 Tor Lillqvist <tml@iki.fi>
* glib/gconvert.c (g_locale_to_utf8, g_filename_to_uri): Improve

@ -1,3 +1,9 @@
2004-12-21 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (print_entry): Don't show
the special G_OPTION_REMAINING entry. (#161934,
Matthew F. Barnes)
2004-12-20 Tor Lillqvist <tml@iki.fi>
* glib/gconvert.c (g_locale_to_utf8, g_filename_to_uri): Improve

@ -1,3 +1,9 @@
2004-12-21 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (print_entry): Don't show
the special G_OPTION_REMAINING entry. (#161934,
Matthew F. Barnes)
2004-12-20 Tor Lillqvist <tml@iki.fi>
* glib/gconvert.c (g_locale_to_utf8, g_filename_to_uri): Improve

@ -1,3 +1,9 @@
2004-12-21 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (print_entry): Don't show
the special G_OPTION_REMAINING entry. (#161934,
Matthew F. Barnes)
2004-12-20 Tor Lillqvist <tml@iki.fi>
* glib/gconvert.c (g_locale_to_utf8, g_filename_to_uri): Improve

@ -1,3 +1,9 @@
2004-12-21 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (print_entry): Don't show
the special G_OPTION_REMAINING entry. (#161934,
Matthew F. Barnes)
2004-12-20 Tor Lillqvist <tml@iki.fi>
* glib/gconvert.c (g_locale_to_utf8, g_filename_to_uri): Improve

@ -372,6 +372,9 @@ print_entry (GOptionGroup *group,
if (entry->flags & G_OPTION_FLAG_HIDDEN)
return;
if (entry->long_name[0] == 0)
return;
str = g_string_new (NULL);
if (entry->short_name)