summaryrefslogtreecommitdiffstats
path: root/Documentation/technical
diff options
context:
space:
mode:
authorStephan Beyer <s-beyer@gmx.net>2009-01-17 04:02:55 +0100
committerJunio C Hamano <gitster@pobox.com>2009-01-18 02:57:15 +0100
commit14e6298f1215da503f0f65b63e13d674dd781868 (patch)
tree8088ec6e580653a54324a6b253a8dd4747cee036 /Documentation/technical
parentrun_hook(): check the executability of the hook before filling argv (diff)
downloadgit-14e6298f1215da503f0f65b63e13d674dd781868.tar.xz
git-14e6298f1215da503f0f65b63e13d674dd781868.zip
run_hook(): allow more than 9 hook arguments
This is done using the ALLOC_GROW macro. Signed-off-by: Stephan Beyer <s-beyer@gmx.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/technical')
-rw-r--r--Documentation/technical/api-run-command.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/technical/api-run-command.txt b/Documentation/technical/api-run-command.txt
index 13e7b6361b..2efe7a40be 100644
--- a/Documentation/technical/api-run-command.txt
+++ b/Documentation/technical/api-run-command.txt
@@ -58,7 +58,7 @@ Functions
The first argument is a pathname to an index file, or NULL
if the hook uses the default index file or no index is needed.
The second argument is the name of the hook.
- The further arguments (up to 9) correspond to the hook arguments.
+ The further arguments correspond to the hook arguments.
The last argument has to be NULL to terminate the arguments list.
If the hook does not exist or is not executable, the return
value will be zero.