aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 2788b49..1b67542 100644
--- a/main.cpp
+++ b/main.cpp
@@ -60,7 +60,7 @@ bool parse_stream(forth *fth, std::istream& str, bool say_okay)
try {
fth->parse_line(line);
} catch (forth::error e) {
- std::cerr << fth->error_string(e);
+ std::cerr << fth->error_string(e) << " in " << line << std::endl;
continue;
}
}