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

View File

@ -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>
Bug 567138 - get_package_directory_from_module() does not free its

View File

@ -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
*
* 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
* 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
*
* 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
* 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
*
* Since: 2.14