When the compilation of a pattern fails in the error message use the

2007-11-19  Marco Barisione  <marco@barisione.org>

	* glib/gregex.c: When the compilation of a pattern fails in the error
	message use the character offset and not the byte offset.

svn path=/trunk/; revision=5867
This commit is contained in:
Marco Barisione 2007-11-19 11:27:43 +00:00 committed by Marco Barisione
parent c8de81804c
commit d887ff42eb
2 changed files with 15 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2007-11-19 Marco Barisione <marco@barisione.org>
* glib/gregex.c: When the compilation of a pattern fails in the error
message use the character offset and not the byte offset.
2007-11-19 10:30:33 Tim Janik <timj@imendio.com>
* configure.in: updated version number to 2.15.0 for development.

View File

@ -924,7 +924,12 @@ g_regex_new (const gchar *pattern,
* immediately */
if (re == NULL)
{
GError *tmp_error = g_error_new (G_REGEX_ERROR,
GError *tmp_error;
/* PCRE uses byte offsets but we want to show character offsets */
erroffset = g_utf8_pointer_to_offset (pattern, &pattern[erroffset]);
tmp_error = g_error_new (G_REGEX_ERROR,
G_REGEX_ERROR_COMPILE,
_("Error while compiling regular "
"expression %s at char %d: %s"),