git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Rafal Klys <rafalklys@wp.pl>
To: git@vger.kernel.org
Cc: Christian Couder <chriscool@tuxfamily.org>, Rafal Klys <rafalklys@wp.pl>
Subject: [PATCH] trailer: load config to handle core.commentChar
Date: Wed, 27 Apr 2016 21:24:22 +0200	[thread overview]
Message-ID: <1461785062-23523-1-git-send-email-rafalklys@wp.pl> (raw)

Add call to git_config(git_default_config, NULL) to update the
comment_char_line from default '#' to possible different value set in
core.commentChar.

Signed-off-by: Rafal Klys <rafalklys@wp.pl>
---
 trailer.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/trailer.c b/trailer.c
index 8e48a5c..a3700b4 100644
--- a/trailer.c
+++ b/trailer.c
@@ -888,6 +888,9 @@ void process_trailers(const char *file, int in_place, int trim_empty, struct str
 	git_config(git_trailer_default_config, NULL);
 	git_config(git_trailer_config, NULL);
 
+	/* for core.commentChar */
+	git_config(git_default_config, NULL);
+
 	lines = read_input_file(file);
 
 	if (in_place)
-- 
2.8.1.68.g625efa9.dirty

             reply	other threads:[~2016-04-27 19:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-27 19:24 Rafal Klys [this message]
2016-04-27 20:13 ` [PATCH] trailer: load config to handle core.commentChar Christian Couder
2016-04-27 20:31   ` Junio C Hamano
2016-04-27 20:33     ` Eric Sunshine

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=1461785062-23523-1-git-send-email-rafalklys@wp.pl \
    --to=rafalklys@wp.pl \
    --cc=chriscool@tuxfamily.org \
    --cc=git@vger.kernel.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).