summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/interactive_shell.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/interactive_shell.cpp b/src/main/interactive_shell.cpp
index cdeef23ed..7cef623e9 100644
--- a/src/main/interactive_shell.cpp
+++ b/src/main/interactive_shell.cpp
@@ -94,8 +94,12 @@ InteractiveShell::InteractiveShell(ExprManager& exprManager,
#if HAVE_LIBREADLINE
if(d_in == cin) {
- ::rl_readline_name = "CVC4";
+ ::rl_readline_name = const_cast<char*>("CVC4");
+#if READLINE_COMPENTRY_FUNC_RETURNS_CHARP
::rl_completion_entry_function = commandGenerator;
+#else /* READLINE_COMPENTRY_FUNC_RETURNS_CHARP */
+ ::rl_completion_entry_function = (Function) commandGenerator;
+#endif /* READLINE_COMPENTRY_FUNC_RETURNS_CHARP */
::using_history();
switch(OutputLanguage lang = toOutputLanguage(d_options[options::inputLanguage])) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback