aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-26 13:27:31 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-26 13:27:31 -0800
commitb30090f9461f246053b846173c81682018901c7e (patch)
treebe69c50f00b1ceb1b79c9655a679c16abfda0a7c /reader.h
parent8f637975a42bf0bbd946fc3ec21993086f3e87b1 (diff)
Some cleanup of completions in preparation for more multithreading
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 4acb9598..581f177b 100644
--- a/reader.h
+++ b/reader.h
@@ -133,7 +133,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 wchar_t *, std::vector<completion_t> &, complete_type_t );
+typedef void (*complete_function_t)( const wcstring &, std::vector<completion_t> &, complete_type_t );
void reader_set_complete_function( complete_function_t );
/**