diff --git a/gobject/ChangeLog b/gobject/ChangeLog index 5574d8383..addda5792 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,7 @@ +Sat Jan 10 23:55:42 2004 Matthias Clasen + + * glib-mkenums.1: Document the lowercase_name trigraph option. + Sat Jan 10 02:43:20 2004 Tim Janik * gtype.h: made G_DEFINE_TYPE_INTERNAL() public by renaming it to diff --git a/gobject/glib-mkenums.1 b/gobject/glib-mkenums.1 index 46c6cafd0..f7d90582c 100644 --- a/gobject/glib-mkenums.1 +++ b/gobject/glib-mkenums.1 @@ -122,10 +122,13 @@ The name of the input file currently being processed (e.g. foo.h). .SS Trigraph extensions Some C comments are treated specially in the parsed enum definitions, such comments start out with the trigraph sequence "/*<" and end with the trigraph sequence ">*/". +.PP Per enum definition, the options "skip" and "flags" can be specified, to indicate this enum definition to be skipped, or for it to be treated as a flags definition, or to specify the common prefix to be stripped from all values to generate value nicknames, -respectively. +respectively. The "lowercase_name" option can be used to specify the word separation used +in the *_get_type() function. For instance, /*< lowercase_name=gnome_vfs_uri_hide_options >*/. +.PP Per value definition, the options "skip" and "nick" are supported. The former causes the value to be skipped, and the latter can be used to specify the otherwise auto-generated nickname.