aboutsummaryrefslogtreecommitdiffstats
path: root/src/repl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-02-15 22:24:54 +0100
committerDavid Robillard <d@drobilla.net>2019-02-15 22:24:54 +0100
commitb321fb5d3d6b3c2855c2fcc049c6f3b8fb13a7a8 (patch)
tree2347b5b8d8eac8647267fb33ed35cd0f8dfabdf8 /src/repl.cpp
parent80801dc725dbb08c67ddee92fc742093f8c2bc7c (diff)
downloadresp-b321fb5d3d6b3c2855c2fcc049c6f3b8fb13a7a8.tar.gz
resp-b321fb5d3d6b3c2855c2fcc049c6f3b8fb13a7a8.tar.bz2
resp-b321fb5d3d6b3c2855c2fcc049c6f3b8fb13a7a8.zip
WIP: Port to LLVM7llvm7
Diffstat (limited to 'src/repl.cpp')
-rw-r--r--src/repl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/repl.cpp b/src/repl.cpp
index d3ad22e..e6de528 100644
--- a/src/repl.cpp
+++ b/src/repl.cpp
@@ -42,7 +42,7 @@ readExpand(PEnv& penv, Cursor& cursor, istream& is, const AST*& exp)
{
try {
exp = penv.parse(cursor, is);
- } catch (Error e) {
+ } catch (RespError e) {
cerr << e.what() << endl;
is.ignore(std::numeric_limits<std::streamsize>::max(), '\n'); // Skip REPL junk
throw e;
@@ -224,7 +224,7 @@ eval(CEnv& cenv, Cursor& cursor, istream& is, bool execute)
callPrintCollect(cenv, cenv.engine()->getFn(cenv, "main"),
ast, retT, execute);
- } catch (Error& e) {
+ } catch (RespError& e) {
cenv.err << e.what() << endl;
return 1;
}
@@ -288,7 +288,7 @@ repl(CEnv& cenv)
ast, retT, true);
}
- } catch (Error& e) {
+ } catch (RespError& e) {
cenv.err << e.what() << endl;
}
}