Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
i18n: add a missing space in message
author
Jean-Noel Avila
<jn.avila@free.fr>
Sun, 8 Oct 2017 12:18:39 +0000
(14:18 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 9 Oct 2017 09:59:01 +0000
(18:59 +0900)
The message spans over 2 lines but the C conconcatenation does not add
the needed space between the two lines.
Signed-off-by: Jean-Noel Avila <jn.avila@free.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
c44a4c6
)
diff --git
a/sequencer.c
b/sequencer.c
index c54596f9699838f0a0e0f45f9eb48eca3eb7502c..b7e0a3864c57724691b15a1f0823b8b1db1f5b7c 100644
(file)
--- a/
sequencer.c
+++ b/
sequencer.c
@@
-2536,7
+2536,7
@@
static enum check_level get_missing_commit_check_level(void)
return CHECK_WARN;
if (!strcasecmp("error", value))
return CHECK_ERROR;
- warning(_("unrecognized setting %s for option"
+ warning(_("unrecognized setting %s for option
"
"rebase.missingCommitsCheck. Ignoring."), value);
return CHECK_IGNORE;
}