Mercurial > geeqie
diff src/rcfile.c @ 1346:c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
author | zas_ |
---|---|
date | Sat, 28 Feb 2009 20:48:47 +0000 |
parents | 4179d41d1149 |
children | 9d190c098b97 |
line wrap: on
line diff
--- a/src/rcfile.c Sat Feb 28 20:24:42 2009 +0000 +++ b/src/rcfile.c Sat Feb 28 20:48:47 2009 +0000 @@ -1049,7 +1049,7 @@ gboolean ret = TRUE; GQParserData *parser_data; - if (g_file_get_contents (utf8_path, &buf, &size, NULL) == FALSE) + if (g_file_get_contents(utf8_path, &buf, &size, NULL) == FALSE) { return FALSE; } @@ -1061,7 +1061,7 @@ context = g_markup_parse_context_new(&parser, 0, parser_data, NULL); - if (g_markup_parse_context_parse (context, buf, size, NULL) == FALSE) + if (g_markup_parse_context_parse(context, buf, size, NULL) == FALSE) { ret = FALSE; DEBUG_1("Parse failed"); @@ -1070,7 +1070,7 @@ g_free(parser_data); g_free(buf); - g_markup_parse_context_free (context); + g_markup_parse_context_free(context); return ret; }