From: Bagas Sanjaya <bagasdotme@gmail.com>
To: git@vger.kernel.org
Cc: "Johannes Sixt" <j6t@kdbg.org>,
"Ævar Arnfjörð Bjarmason" <avarab@gmail.com>,
"René Scharfe" <l.s.r@web.de>,
"Jean-Noël Avila" <jn.avila@free.fr>,
"Bagas Sanjaya" <bagasdotme@gmail.com>
Subject: [PATCH 1/2] sequencer: factor GIT_AUTHOR_* from message strings
Date: Wed, 19 Jan 2022 16:44:44 +0700 [thread overview]
Message-ID: <20220119094445.15542-2-bagasdotme@gmail.com> (raw)
In-Reply-To: <20220119094445.15542-1-bagasdotme@gmail.com>
Factor messages containing GIT_AUTHOR_* variable.
Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
---
sequencer.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/sequencer.c b/sequencer.c
index 6abd72160c..472feb053c 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -848,17 +848,17 @@ int read_author_script(const char *path, char **name, char **email, char **date,
for (i = 0; i < kv.nr; i++) {
if (!strcmp(kv.items[i].string, "GIT_AUTHOR_NAME")) {
if (name_i != -2)
- name_i = error(_("'GIT_AUTHOR_NAME' already given"));
+ name_i = error(_("'%s' already given"), "GIT_AUTHOR_NAME");
else
name_i = i;
} else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_EMAIL")) {
if (email_i != -2)
- email_i = error(_("'GIT_AUTHOR_EMAIL' already given"));
+ email_i = error(_("'%s' already given"), "GIT_AUTHOR_EMAIL");
else
email_i = i;
} else if (!strcmp(kv.items[i].string, "GIT_AUTHOR_DATE")) {
if (date_i != -2)
- date_i = error(_("'GIT_AUTHOR_DATE' already given"));
+ date_i = error(_("'%s' already given"), "GIT_AUTHOR_DATE");
else
date_i = i;
} else {
@@ -867,11 +867,11 @@ int read_author_script(const char *path, char **name, char **email, char **date,
}
}
if (name_i == -2)
- error(_("missing 'GIT_AUTHOR_NAME'"));
+ error(_("missing '%s'"), "GIT_AUTHOR_NAME");
if (email_i == -2)
- error(_("missing 'GIT_AUTHOR_EMAIL'"));
+ error(_("missing '%s'"), "GIT_AUTHOR_EMAIL");
if (date_i == -2)
- error(_("missing 'GIT_AUTHOR_DATE'"));
+ error(_("missing '%s'"), "GIT_AUTHOR_DATE");
if (date_i < 0 || email_i < 0 || date_i < 0 || err)
goto finish;
*name = kv.items[name_i].util;
--
An old man doll... just what I always wanted! - Clara
next prev parent reply other threads:[~2022-01-19 9:45 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-19 9:44 [PATCH 0/2] More similar messages refactoring Bagas Sanjaya
2022-01-19 9:44 ` Bagas Sanjaya [this message]
2022-02-11 20:26 ` [PATCH 1/2] sequencer: factor GIT_AUTHOR_* from message strings Jean-Noël AVILA
2022-01-19 9:44 ` [PATCH 2/2] advice: refactor "action is not possible because you have unmerged files" Bagas Sanjaya
2022-01-19 11:11 ` René Scharfe
2022-01-19 15:31 ` Ævar Arnfjörð Bjarmason
2022-01-19 15:42 ` Jean-Noël AVILA
2022-01-19 18:18 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220119094445.15542-2-bagasdotme@gmail.com \
--to=bagasdotme@gmail.com \
--cc=avarab@gmail.com \
--cc=git@vger.kernel.org \
--cc=j6t@kdbg.org \
--cc=jn.avila@free.fr \
--cc=l.s.r@web.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.