summaryrefslogtreecommitdiff
path: root/src/commit.h
diff options
context:
space:
mode:
authorVicent Martí <vicent@github.com>2013-10-03 04:36:29 -0700
committerVicent Martí <vicent@github.com>2013-10-03 04:36:29 -0700
commitab1368766240cfe861729642abe1cddd01c0203e (patch)
treed52d30b9d900a056c7c8930e93e598af624d255c /src/commit.h
parentc8f2ba994460de75f1cbd3b35fb52d8a5334b59a (diff)
parent598f069b998c42c12439f3f353b6d075905becba (diff)
downloadlibgit2-ab1368766240cfe861729642abe1cddd01c0203e.tar.gz
Merge pull request #1887 from libgit2/ntk/topic/git_message_raw
commit: Introduce git_commit_message_raw()
Diffstat (limited to 'src/commit.h')
-rw-r--r--src/commit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commit.h b/src/commit.h
index 22fc898a1..d452e2975 100644
--- a/src/commit.h
+++ b/src/commit.h
@@ -24,7 +24,7 @@ struct git_commit {
git_signature *committer;
char *message_encoding;
- char *message;
+ char *raw_message;
char *raw_header;
};