summaryrefslogtreecommitdiff
path: root/builtin-config.c
diff options
context:
space:
mode:
authorFrank Lichtenheld <frank@lichtenheld.de>2007-06-25 14:03:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-06-27 01:20:47 (GMT)
commitb69ba460bb0710b2af8a20b4b0d62233f29401ec (patch)
treeeb84fa18ed8c179ef2467cfcf76f3eb5a4de75e1 /builtin-config.c
parente373bb73889e15452b622df67465b77803876aa6 (diff)
downloadgit-b69ba460bb0710b2af8a20b4b0d62233f29401ec.zip
git-b69ba460bb0710b2af8a20b4b0d62233f29401ec.tar.gz
git-b69ba460bb0710b2af8a20b4b0d62233f29401ec.tar.bz2
config: Change output of --get-regexp for valueless keys
Print no space after the name of a key without value. Otherwise keys without values are printed exactly the same as keys with empty values. Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-config.c')
-rw-r--r--builtin-config.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/builtin-config.c b/builtin-config.c
index b2515f7..dbc2339 100644
--- a/builtin-config.c
+++ b/builtin-config.c
@@ -38,8 +38,12 @@ static int show_config(const char* key_, const char* value_)
regexec(regexp, (value_?value_:""), 0, NULL, 0)))
return 0;
- if (show_keys)
- printf("%s ", key_);
+ if (show_keys) {
+ if (value_)
+ printf("%s ", key_);
+ else
+ printf("%s", key_);
+ }
if (seen && !do_all)
dup_error = 1;
if (type == T_INT)