1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-03-31 04:43:06 +02:00

Docs improvement

svn path=/trunk/; revision=7801
This commit is contained in:
Matthias Clasen 2009-01-11 04:53:34 +00:00
parent f5b5154a88
commit 38202496e7
2 changed files with 19 additions and 0 deletions

@ -1,3 +1,10 @@
2009-01-10 Matthias Clasen <mclasen@redhat.com>
Bug 566569 gregex docs clarification
* glib/gregex.c: Copy the warning about @string to all
relevant docs. Proposed by Christian Persch
2009-01-09 Tor Lillqvist <tml@iki.fi> 2009-01-09 Tor Lillqvist <tml@iki.fi>
Bug 567138 - get_package_directory_from_module() does not free its Bug 567138 - get_package_directory_from_module() does not free its

@ -1351,6 +1351,10 @@ g_regex_match_simple (const gchar *pattern,
* } * }
* ]| * ]|
* *
* @string is not copied and is used in #GMatchInfo internally. If
* you use any #GMatchInfo method (except g_match_info_free()) after
* freeing or modifying @string then the behaviour is undefined.
*
* Returns: %TRUE is the string matched, %FALSE otherwise * Returns: %TRUE is the string matched, %FALSE otherwise
* *
* Since: 2.14 * Since: 2.14
@ -1478,6 +1482,10 @@ g_regex_match_full (const GRegex *regex,
* i.e. you must free it regardless if regular expression actually * i.e. you must free it regardless if regular expression actually
* matched. * matched.
* *
* @string is not copied and is used in #GMatchInfo internally. If
* you use any #GMatchInfo method (except g_match_info_free()) after
* freeing or modifying @string then the behaviour is undefined.
*
* Returns: %TRUE is the string matched, %FALSE otherwise * Returns: %TRUE is the string matched, %FALSE otherwise
* *
* Since: 2.14 * Since: 2.14
@ -1536,6 +1544,10 @@ g_regex_match_all (const GRegex *regex,
* i.e. you must free it regardless if regular expression actually * i.e. you must free it regardless if regular expression actually
* matched. * matched.
* *
* @string is not copied and is used in #GMatchInfo internally. If
* you use any #GMatchInfo method (except g_match_info_free()) after
* freeing or modifying @string then the behaviour is undefined.
*
* Returns: %TRUE is the string matched, %FALSE otherwise * Returns: %TRUE is the string matched, %FALSE otherwise
* *
* Since: 2.14 * Since: 2.14