On Mon, Dec 30, 2013 at 10:07 PM, Sebastian Schuberth <sschuberth@xxxxxxxxx> wrote: > Since 2dce956 is_git_command() was a bit slow as it does file I/O in the > call to list_commands_in_dir(). Avoid the file I/O by adding an early > check for internal commands. > > Signed-off-by: Sebastian Schuberth <sschuberth@xxxxxxxxx> > --- > builtin/help.c | 5 ++ > git.c | 242 ++++++++++++++++++++++++++++++--------------------------- > 2 files changed, 132 insertions(+), 115 deletions(-) > > diff --git a/builtin/help.c b/builtin/help.c > index b6fc15e..1f0261e 100644 > --- a/builtin/help.c > +++ b/builtin/help.c > @@ -284,10 +284,15 @@ static int git_help_config(const char *var, const char *value, void *cb) > return git_default_config(var, value, cb); > } > > +extern int is_internal_command(const char *s); > + Starting the new year in keeping with the fine tradition of asking people who add stuff to clean up what others left behind, I would suggest moving all the code related to internal commands (or maybe all commands) in a new pair of files like "internal-cmds.{c,h}". This way git.c and builtin/help.c could include internal-cmds.h and you wouldn't need such extern declaration. Happy new year everyone, Christian. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html