aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-03-05 20:54:16 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-03-05 20:54:16 -0800
commit4d19bb17a9161fc085e7b308d1ac30ec74186c33 (patch)
treecac5e5e7514ae08c66a43518b531fb86a421d276 /reader.h
parentb2012467b327db8d518f2b01eed3d529609f7349 (diff)
Break out COMPLETE_NO_CASE and COMPLETE_REPLACES_TOKEN into separate flags, in preparation for upcoming fuzzy completion work
Diffstat (limited to 'reader.h')
-rw-r--r--reader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/reader.h b/reader.h
index 174be574..80dbe258 100644
--- a/reader.h
+++ b/reader.h
@@ -163,7 +163,7 @@ void reader_pop();
- The command to be completed as a null terminated array of wchar_t
- An array_list_t in which completions will be inserted.
*/
-typedef void (*complete_function_t)(const wcstring &, std::vector<completion_t> &, complete_type_t, wcstring_list_t * lst);
+typedef void (*complete_function_t)(const wcstring &, std::vector<completion_t> &, completion_request_flags_t, wcstring_list_t * lst);
void reader_set_complete_function(complete_function_t);
/**