aboutsummaryrefslogtreecommitdiffhomepage
path: root/complete.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'complete.cpp')
-rw-r--r--complete.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/complete.cpp b/complete.cpp
index 0784da78..63bf6d64 100644
--- a/complete.cpp
+++ b/complete.cpp
@@ -1173,7 +1173,8 @@ static void complete_cmd( const wchar_t *cmd,
//function_get_names( &possible_comp, cmd[0] == L'_' );
wcstring_list_t names = function_get_names(cmd[0] == L'_' );
for (size_t i=0; i < names.size(); i++) {
- completion_t data_to_push = { names.at(i) };
+ completion_t data_to_push;
+ data_to_push.completion = names.at(i);
possible_comp.push_back( data_to_push );
}