From 3e1b0e587e90ea579eae71ec8115aeec1504757f Mon Sep 17 00:00:00 2001 From: axel Date: Sun, 18 Mar 2007 08:56:11 +1000 Subject: [PATCH] Fix performance bug in command description lookup - it was performed once for every element in PATH. Thanks to Tassilo Horn for the bug report. darcs-hash:20070317225611-ac50b-5df5227ddd88747781c981ed34a80844391573d1.gz --- complete.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/complete.c b/complete.c index 8f89c8ed2..81c795237 100644 --- a/complete.c +++ b/complete.c @@ -1128,12 +1128,11 @@ static void complete_cmd( const wchar_t *cmd, ACCEPT_INCOMPLETE | EXECUTABLES_ONLY ) != EXPAND_ERROR ) { - complete_cmd_desc( cmd, comp ); } } free( path_cpy ); - + complete_cmd_desc( cmd, comp ); } }