aboutsummaryrefslogtreecommitdiffhomepage
path: root/complete.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-02-25 12:21:39 +1000
committerGravatar axel <axel@liljencrantz.se>2006-02-25 12:21:39 +1000
commitfd6bf06f153157b8603f816276fc04fd34337286 (patch)
tree8c2d95e5f3869a01efd578933581dc6192ccaa17 /complete.c
parentd2e11ea61d23e8c12f2601c48781617f07d4b46e (diff)
Various minor edits
darcs-hash:20060225022139-ac50b-9ef43f88e2266978e9b39038a6a5087ff1305509.gz
Diffstat (limited to 'complete.c')
-rw-r--r--complete.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/complete.c b/complete.c
index da8924a2..cc7fa2ca 100644
--- a/complete.c
+++ b/complete.c
@@ -395,7 +395,6 @@ void complete_add( const wchar_t *cmd,
c->short_opt_str = wcsdup(L"");
}
-/* wprintf( L"Add completion to option (short %lc, long %ls)\n", short_opt, long_opt );*/
if( !(opt = malloc( sizeof( complete_entry_opt ) )))
{
die_mem();
@@ -654,7 +653,7 @@ int complete_is_valid_option( const wchar_t *str,
Make sure completions are loaded for the specified command
*/
complete_load( cmd, 0 );
-
+
for( i=first_entry; i; i=i->next )
{
wchar_t *match = i->cmd_type?path:cmd;
@@ -1956,11 +1955,10 @@ void complete( const wchar_t *cmd,
if( !done )
{
-
pos = cursor_pos-(begin-cmd);
-
+
buff = wcsndup( begin, end-begin );
-
+
if( !buff )
done=1;
}
@@ -2025,7 +2023,6 @@ void complete( const wchar_t *cmd,
if( current_token && current_command && prev_token )
{
-
if( on_command )
{
/* Complete command filename */
@@ -2052,7 +2049,6 @@ void complete( const wchar_t *cmd,
free( current_token );
free( current_command );
free( prev_token );
-
}
error_max=old_error_max;