summaryrefslogtreecommitdiff
path: root/help.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-09-08 06:52:16 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-09-08 06:52:16 (GMT)
commit277cd4c4bd8cca31395846fc80ea28bf2cd4ddf2 (patch)
tree613693df1a0eaba807948a3910dab046fecd77a6 /help.h
parentcd50988ae03e086ca1a8f18584153d359699ea25 (diff)
parentf0e90716d47b429284702b75425a247c9fc41adb (diff)
downloadgit-277cd4c4bd8cca31395846fc80ea28bf2cd4ddf2.zip
git-277cd4c4bd8cca31395846fc80ea28bf2cd4ddf2.tar.gz
git-277cd4c4bd8cca31395846fc80ea28bf2cd4ddf2.tar.bz2
Merge branch 'ar/autospell'
* ar/autospell: Add help.autocorrect to enable/disable autocorrecting git wrapper: DWIM mistyped commands
Diffstat (limited to 'help.h')
-rw-r--r--help.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/help.h b/help.h
index 2733433..56bc154 100644
--- a/help.h
+++ b/help.h
@@ -5,7 +5,7 @@ struct cmdnames {
int alloc;
int cnt;
struct cmdname {
- size_t len;
+ size_t len; /* also used for similarity index in help.c */
char name[FLEX_ARRAY];
} **names;
};