From 1b9e92c73bd223661fe63dffa0c9138da4e1ea80 Mon Sep 17 00:00:00 2001 From: Andreas Ericsson Date: Tue, 18 Nov 2008 01:02:27 +0100 Subject: s/git_revp/git_revpool/ git_revp is something I personally can't stop pronouncing "rev pointer". I'm sure others would suffer the same problem. Also, rename the git_revp_ sub-api "gitrp_". This is the first of many such renames, primarily done to prevent extreme inflation in the "git_" namespace, which we'd like to reserve for a higher-level API. While we're at it, we remove the noise-char "c" from a lot of functions. Since revision walking is all about commits, the common case should be that we're dealing with commits. Exceptions can get a more mnemonic description as needed. Signed-off-by: Andreas Ericsson Signed-off-by: Shawn O. Pearce --- include/git/commit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/git/commit.h') diff --git a/include/git/commit.h b/include/git/commit.h index 160148d67..8cb3e7d4c 100644 --- a/include/git/commit.h +++ b/include/git/commit.h @@ -58,7 +58,7 @@ struct git_commit { * pool's git_odb, or if the commit is present but is * too malformed to be parsed successfully. */ -GIT_EXTERN(git_commit*) git_commit_parse(git_revp *pool, const git_oid *id); +GIT_EXTERN(git_commit*) git_commit_parse(git_revpool *pool, const git_oid *id); /** * Get the id of a commit. -- cgit v1.2.1