projects
/
notmuch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a8ae2cd
)
notmuch dump: Eliminate extra space in error message.
author
Carl Worth
<cworth@cworth.org>
Sun, 25 Oct 2009 16:20:13 +0000
(09:20 -0700)
committer
Carl Worth
<cworth@cworth.org>
Sun, 25 Oct 2009 16:20:13 +0000
(09:20 -0700)
Little details can make big impressions.
notmuch.c
patch
|
blob
|
history
diff --git
a/notmuch.c
b/notmuch.c
index f16192fb6b5f2a1fea206fde94b202e7eb409aca..46c3c63b525f626e18802772a8f0d27dd30f98f9 100644
(file)
--- a/
notmuch.c
+++ b/
notmuch.c
@@
-818,7
+818,8
@@
restore_command (int argc, char *argv[])
notmuch_status_to_string (status));
}
} else {
- fprintf (stderr, "%s ", tag);
+ fprintf (stderr, "%s%s",
+ tag == tags ? "" : " ", tag);
}
}