diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2012-08-06 21:37:43 +0200 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2012-08-06 21:37:43 +0200 |
| commit | a712dd5bbe8d2b4b433ce90f7d977acf762ad080 (patch) | |
| tree | f5d8b0b8f6d5724aa4f84cb173c1f01b753621c4 /src/main.cc | |
| parent | 39797f87dc73675881854b38611489de1dba6b8f (diff) | |
Completions functions take a Context parameter
Diffstat (limited to 'src/main.cc')
| -rw-r--r-- | src/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc index b73efc5e..ff4e21e9 100644 --- a/src/main.cc +++ b/src/main.cc @@ -172,7 +172,7 @@ void do_command(const Context& context) auto cmdline = prompt(":", context, std::bind(&CommandManager::complete, &CommandManager::instance(), - _1, _2)); + _1, _2, _3)); CommandManager::instance().execute(cmdline, context); } |
