[gitg] Removed spaces in strings introduced by auto formatting
- From: Jesse van den Kieboom <jessevdk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gitg] Removed spaces in strings introduced by auto formatting
- Date: Sun, 30 May 2010 21:55:42 +0000 (UTC)
commit ade8a28d706040b16dbb7b235b9254480c59abb0
Author: Jesse van den Kieboom <jessevdk gnome org>
Date: Sun May 30 23:55:18 2010 +0200
Removed spaces in strings introduced by auto formatting
libgitg/gitg-repository.c | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
---
diff --git a/libgitg/gitg-repository.c b/libgitg/gitg-repository.c
index 7b4aa18..48155e9 100644
--- a/libgitg/gitg-repository.c
+++ b/libgitg/gitg-repository.c
@@ -1338,7 +1338,14 @@ load_current_ref (GitgRepository *self)
static void
load_refs (GitgRepository *self)
{
- gchar **refs = gitg_repository_command_with_outputv (self, NULL, "for-each-ref", "--format=% (refname) % (objectname) % (*objectname)", "refs", NULL);
+ gchar **refs;
+
+ refs = gitg_repository_command_with_outputv (self,
+ NULL,
+ "for-each-ref",
+ "--format=%(refname) %(objectname) %(*objectname)",
+ "refs",
+ NULL);
if (!refs)
{
@@ -1839,7 +1846,7 @@ gitg_repository_get_remotes (GitgRepository *repository)
g_free (ret);
- GRegex *regex = g_regex_new ("remote\\. (.+?)\\.url\\s+ (.*)", 0, 0, NULL);
+ GRegex *regex = g_regex_new ("remote\\.(.+?)\\.url\\s+(.*)", 0, 0, NULL);
while (*ptr)
{
@@ -1916,7 +1923,7 @@ gitg_repository_get_ref_pushes (GitgRepository *repository, GitgRef *ref)
g_free (pushes);
- GRegex *regex = g_regex_new ("remote\\. (.+?)\\.push\\s+.*:refs/heads/ (.*)", 0, 0, NULL);
+ GRegex *regex = g_regex_new ("remote\\(.+?)\\.push\\s+.*:refs/heads/(.*)", 0, 0, NULL);
GSList *refs = NULL;
while (*ptr)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]